OWA / Exchange 2000 Rewrite Rules?

Has anyone got outlook web access to work through the gateway? I've added the most obvious variables to the ruleset, like g_szUserBase, g_szVirtualRoot and g_szPublicFolderUrl, but it still breaks. No calendar or mailbox is shown after receveing a few errors. Debugging got me nowhere sofar...
Does anyone have some pointers?

Re 1) Does this mean you have not experienced the same problem I have with the m_objXSLRequest.open function?
Snippet of code - after- being rewritten:
function mf_loadXSL()
     if (null == this.viewClass)
          this.viewClass = "/exchweb/controls/ctrl_View20.xsl";
     if (mf_loadXSL.oldViewClass != this.viewClass)
          m_objXSLRequest = new ActiveXObject(m_szXMLHTTPProgID);
          m_objXSLRequest.open("https://racoon.portalpoc.ns.nl/http://ns00dc002.ad.ns.nl/exchweb/controls/GET", this.viewClass, true);
          if(null != this.acceptLang && "" != this.acceptLang)
etc...
m_objXSLRequest.open's first parameter gets rewritten because of the open rewrite rule. As this should not be, I remove the open rewrite rule, but (after restart) still gets rewritten. I traced this snippet of code (ctrl_view20.js) after a invalid procedure javascripte error on line 2053 comin from the objViewXML function in
function createViewXML(objViewXML, objTransFormXSL)
     var objXML = new ActiveXObject(m_szXMLDOMProgID);
     objViewXML.transformNodeToObject(objTransFormXSL.documentElement, objXML);
etc...
adding the proper rewrite rules, such as this.viewClass to the <variable type="URL" doesn't result in a rewrite as you can see in the first snippet of code....
Can you perhaps give me some idea on what rewrite rules to add?
Re 2) That's not what I meant. I meant that my browser breaks on concated code over multiple lines. Even code that has no url's in them. It could just as well be ordinary strings of message text and still break. How does the gateway effect those pieces of code resulting in errors?

Similar Messages

  • Exchange 2000 portlets time out

    Running the exchange ASPs both in an empty browser window and as portlets goes awfully slow. Adding all three portlets to one page makes at least one of them time out, regardless of the timeout setting. Running only one takes up to ten seconds to complete. The ASPs are installed on the same server as is running the Outlook Web Access. When running the OWA's default GUI it completes downloading in a couple of seconds so the server's capacity should not be the issue.
    Could this be a problem with the authentication since the ASPs use basic authentication while the OWA uses windows authentication? Anyone have tips on how to speed 'em up?

    I will try and explain the implementation of MS Exchange Portlets and inturn try to solve the problem that we have at hand.
    Outlook Web Access (OWA), is the default web access utility provided by Microsoft.
    The MS Exchange portlets follow the earlier implementations OWA (OWA 5.5). This implementation is with Active Server Pages (ASP) and Collaboration Data Objects (CDO), these in turn rely on Messaging API (MAPI) function calls to retrieve messages from the Exchange Server. For each connected user, OWA must open a MAPI session with the Exchange server, but the number of open MAPI sessions that can be efficiently handled within an ASP session is limited. The architecture restricts the number of users that can simultaneously connect to an Outlook Web Access server.
    Because of this, a major complaint that many users had with earlier OWA versions was performance.
    Now coming to the implementation of OWA in Exchange 2000, rather than attempt to improve OWA's performance by tweaking the existing code, Microsoft developed OWA 2000 from scratch to take advantage of universal technologies like Web-Dav. In addition to this OWA 2000 uses XML and Dynamic HTML (DHTML) to improve performance and provide additional advanced features by offloading some rendering tasks to the client and reducing the amount of client-to-server communication.
    So OWA 2000 will run fine without giving any performance issues. Same would be the case if you use IFrame to use load OWA.
    Also contrary to what the OWA 2000 response time suggests, in these Portlets the server capacity would matter.
    Information that would prove helpful to investigate this problem further would be;
    1. What is the Exchange/IIS Server setup,
    a. Are the Exchange/IIS on the same machine?
    b. Machine configuration of each of the machines?(OS,RAM, Processor speed etc.)
    c. Are the Exchange/IIS on the same Windows domain?
    2. Number of users simultaneously accessing MS Exchange through Portlets.
    If you can share this information regarding the setup/usage, we can investigate into this problem further, and try to solve the problem.

  • URL Rewrite Rule: HTTP to HTTPS Not Working

    Here is my problem. I cannot get HTTP to HTTPS redirect to work using the URL Rewrite module. I am using version 2, by the way, which I understand is the latest version. I've also enabled the "Proxy Server" and Application Request Routing"
    features.
    I've trolled through the Internet for 2 days now for solutions to my problem, including the ones provided by the TechNet forums and by MVP Scott Forsyth. I've tried over 30 solutions, and none have resolved my issue. Granted some of the solutions I've tried
    may have been repeats of others. After trying so many, I have had a hard time discerning the differences. Does it really matter, for instance if the pattern match for the {HTTPS} input is specified as
    "^off$" or just "off"? I see this discrepancy (among others) everywhere. It seems like there are so many variations out there. It is quite confusing for the uninitiated and the newbies like myself to the
    URL Rewrite technology. I have enabled and consulted my "Failed Request Tracing Rules" logs but cannot make any sense of the cryptic information it is providing.
    I just cannot get my reverse proxy server to redirect http requests from the Internet to https to my internal web server. When a user specifies "https://server1.xxxxx.com". he is able to access the internal server via the reverse proxy (IIS) server.
    But when he specifies "http://server1.xxxxx.com" he receives "Server Error 500 - Internal server error.There is a problem with the resource you are looking for, and it cannot be displayed."
    At this point I am at my wits end, and am even considering configuring the protocol translation on our firewall. But this not my preference as it presents another layer of complexity, and device to troubleshoot later on. Below I've pasted my entire web.config
    file with my most current version of the rule in question (in bold) for your review. I started to paste just the specific rule, but thought you might need to see the entire file in case something else may be conflicting with the rule.
    Thank you in advance for your help.
    Dave Robinson
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
        <system.webServer>
            <rewrite>
                  <rules>
                    <clear />
    <rule name="HTTP to HTTPS Redirect" enabled="true" stopProcessing="true">
                    <match url="(.*)" />
                   <conditions>
                      <add input="{HTTPS}" pattern="off" />
                    </conditions>
                      <action type="Redirect" url="https://{HTTP_HOST}/{REQUEST_URI}" redirectType="Found" />
                    </rule>
    <rule name="ReverseProxyInboundRule1" stopProcessing="true">
                        <match url="(.*)" />
                        <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                            <add input="{CACHE_URL}" pattern="^(https?)://" />
                        </conditions>
                        <serverVariables>
                            <set name="HTTP_X_ORIGINAL_ACCEPT_ENCODING" value="{HTTP_ACCEPT_ENCODING}" />
                            <set name="HTTP_ACCEPT_ENCODING" value="" />
                    </serverVariables>
                        <action type="Rewrite" url="{C:1}://server1.xxxxx.com/{R:1}" />
                    </rule>
                </rules>
                <outboundRules>
                    <rule name="RestoreAcceptEncoding" preCondition="NeedsRestoringAcceptEncoding">
                    <match serverVariable="HTTP_ACCEPT_ENCODING" pattern="^(.*)" />
                    <action type="Rewrite" value="{HTTP_X_ORIGINAL_ACCEPT_ENCODING}" />
                    </rule>
                    <rule name="ReverseProxyOutboundRule1" preCondition="ResponseIsHtml1">
                        <match filterByTags="A, Form, Img" pattern="^http(s)?://server1.xxxxx.com/(.*)" />
                        <action type="Rewrite" value="http{R:1}://server1.xxxxx.local/{R:2}" />
                    </rule>
                    <preConditions>
                        <preCondition name="ResponseIsHtml1">
                            <add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
                        </preCondition>
                        <preCondition name="NeedsRestoringAcceptEncoding">
                            <add input="{HTTP_X_ORIGINAL_ACCEPT_ENCODING}" pattern=".+" />
                        </preCondition>
                    </preConditions>
                </outboundRules>
            </rewrite>
            <tracing>
                <traceFailedRequests>
                    <add path="*">
                        <traceAreas>
                            <add provider="ASP" verbosity="Verbose" />
                            <add provider="ISAPI Extension" verbosity="Verbose" />
                            <add provider="WWW Server" areas="Authentication,Security,Filter,StaticFile,CGI,Compression,Cache,RequestNotifications,Module,FastCGI,WebSocket"
    verbosity="Verbose" />
                        </traceAreas>
    <failureDefinitions timeTaken="00:00:00" statusCodes="404" />
                    </add>
                </traceFailedRequests>
            </tracing>
            <httpErrors errorMode="Custom" />
            <httpRedirect enabled="false" destination="" exactDestination="false" childOnly="false" httpResponseStatus="Permanent" />
        </system.webServer>
    </configuration>

    On Wed, 28 Jan 2015 17:53:41 +0000, dwrobins2000 wrote:
    Here is my problem. I cannot get HTTP to HTTPS redirect to work using the URL Rewrite module. I am using version 2, by the way, which I understand is the latest version. I've also enabled the "Proxy Server" and Application Request Routing"
    features.
    Web/IIS related issues are better posted where the IIS experts are:
    http://forums.iis.net
    Paul Adare - FIM CM MVP
    "The equivalent of treating dandruff by decapitation"
    -- Frank Zappa on the Parents Music Resource Center' censorship plans

  • Removing dead Exchange 2003 and Exchange 2000 Server from the domain

    Hi Team,
    I have come across a client who wants to migrate to O365 from existing Exchange 2003 environment through the Hybrid Model. I am trying to introduce 2010 Sp3 to the environment. While checking the environment using Exchange pre-deployment found 2 servers
    in the environment which is not present on the network now. Client has no clue what they are.
    One is Exchange 2003 and the other is Exchange 2000. The problem here is i cannot introduce Exchange 2010 Sp3 unless all the Exchange servers are running minimum Exchange 2003 Sp2. 
    At present i find only 2 exchange 2003 Sp2 server which are in production. Need kind assistance to move forward.

    Hi,
    I recommend you follow the steps below:
    1. Please upgrade Exchange 2000 and Exchange 2003 to Exchange 2003 SP2 at first.
    2. Deploy Exchange 2010 servers in this order: CAS, Hub, UM and Mailbox. For more information, here is an article for your reference:
    Exchange 2003 - Planning Roadmap for Upgrade and Coexistence
    http://technet.microsoft.com/en-us/library/aa998186(v=exchg.141).aspx
    3. Install Exchange 2010 SP3.
    Here is an article for your reference.
    Upgrade Exchange 2010 to Exchange 2010 SP1, Exchange 2010 SP2, or Exchange 2010 SP3
    http://technet.microsoft.com/en-us/library/bb629560(v=exchg.141).aspx
    About a hybrid deployment with Microsoft Office 365 using Microsoft Exchange Server 2010 servers, here is an article for your reference. 
    Understanding Upgrading Office 365 Tenants for Exchange 2010-based Hybrid Deployments
    http://technet.microsoft.com/en-us/library/jj945383(v=exchg.141).aspx
    Hope it helps.
    If there are any problems, please feel free to let me know.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

  • Sender rewriting rule not working

    Hi,
    I am unable to make may sender rewriting rules working. The recipient rewriting rules works ok.
    I want to change the reply address that shows up in the destination email. For example, if i am sending from [email protected] (via Oracle webmail)i want to make the destination see [email protected] as a reply address.
    i ve tried everything, but without success.
    An example of sender rewriting rule:
    $*@cm-lisboa.net, $[email protected]
    Regards,
    Luis Neves

    Hi,
    Could you give us more details about : your coding, input sample when error is raised ?
    That'd help a lot
    Chris

  • How to create rewrite rule to accept only mail pass from antivirus server

    I want to set JES messaging 6.0 to accept only mail that scaned from antivirus server. If clients send direct to messaging server it will forward that mail to antivirus server. After mail was scaned it is sent to messaging server and messaging server accept it.
    How to create rewrite rule for this case?

    Please read this technical note, for setting up such a configuration:
    http://ims.balius.com/downloads/AlternateConversion.pdf
    Please note, this site contains some other very useful information for Messaging Server, but IE browsers are NOT supported. You must use some other browser.

  • Exchange upgrade failing on Pre-Req check with error that a server is running exchange 2000 or 2003.

    I currently have an Exchange 2010 single server running in the domain.
    I beleive it was migrated from a 2003 exchange years ago, and that has been re-purposed.
    When want to migrate to exchange 2013 and install a DAG, but on the readiness checks, it fails on the new server saying one or more server in the existing orginisation are running exchange 2000 or exchange server 2003.
    The link says how to uninstall exchange, but it is not there any longer to uninstall.
    I have been looking for how to clean up AD, but not finding anything definitive as to what to delete to have the install succeed.

    Hi,
    Please run the following command to check the Exchange server in your organization:
    Get-ExchangeServer
    Check whether there is any legacy Exchange server listed. We can double confirm the Excahnge server in the following path:
    1. In ADSI Edit, navigate to Configuration >
    CN=Configuration,CN=<domain> > CN=Services >
    CN=Microsoft Exchange > CN=<Exchange organization name> >
    CN=Address Lists Container > CN=Recipient Update Services.
    2. In the result pane, right-click Recipient Update Service (Enterprise Configuration), click
    Delete, and then click Yes to confirm the deletion.
    3. Uninstall Exchange 2003 by using Add or Remove Programs from
    Control Panel.
    If there is no Exchange 2003 in your organization, please collect any error logs in Event Viewer for further troubleshooting.
    Regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Winnie Liang
    TechNet Community Support

  • URL Rewrite Rules in 10.1.4

    Hi,
    I am having some trouble rewriting the urls, I can't make it work ...
    What I want is to change the url:
    http://www.mycompany.com/portal/page/portal/portal_sverige/
    to
    http://www.mycompany.com/sverige
    Where "portal_sverige" is the page group.
    What I did was:
    Configure the properties in the page group:
    Search pattern: /portal/page/portal/portal_sweden/
    Replace pattern: /sweden/
    And I went to enterprise manager, MT, http server, administration, advanced server properties, httpd.conf, and put in the lines:
    RewriteEngine On
    RewriteRule ^/sweden/(.*)$/portal/page/portal/portal_sweden/$1 [PT]
    However, when I try to use navigator to edit a page in that group, I get:
    http://www.mycompany.com/sweden/pagename?_mode=16
    Returns:
    Object not found. (WWC-50003)
    And just typing in www.mycompany.com/sweden returns 404 error instead of the root page as I would have liked.
    Any ideas about what to do? I can't really find any information ... is the change made in the MT ? IM ? Do I have to do it in some specific order? Is the syntax wrong?
    Appreciate any help, thanks

    Hello Sayeeas,
    I posted an answer to this question a couple months back... check out the thread
    Re: Portal URL Rewrite
    Here is the answer:
    In this example the name of the page group is "www":
    Our rewrite rule is also set up in a virtual host section of the httpd.conf file as well so some of the options may not be required for your set up:
    RewriteEngine on
    RewriteOptions inherit
    RewriteCond %{REQUEST_URI} !^/(portal|pls|images).*$
    RewriteRule ^(.+) /portal/page/portal/www$1 [PT]
    The rewrite condition allows us to ignore the rewrite for certain items in the path. This allows the portal navigator to work. There may be a couple more items that need to be added to the condition because I recently noticed that the help pages dont function properly.
    In the portal configuration for the rewrite rule we specify:
    Search pattern: /portal/page/portal/www
    Replace pattern:
    Thats right, the replace pattern is blank.
    To see it in action check out http://www.sagelogix.com
    -sean
    Solutions Architect
    http://www.sagelogix.com

  • Rewrite rule in mappings file

    hi all,
    in iMS 5.2, can any one suggest me how to write a rule in mapping file so that any mail sent from a particular user (say [email protected]) is also sent (i.e. Bcc 'd ) to [email protected] in addition to the "To:" address which the mail actually goes.
    this is required to monitor all mails originating from the address [email protected]
    regards,
    rajesh.

    Yeah, no.
    1. there is no such thing as a "rewrite rule" in the mappings file.
    2. Likely, what you want is a sieve rule, or a "capture" rule.
    3. Or, perhaps save the files to disk, like this:
    for capturing all messages to disk files (this doesn't mail the messages, just saves 'em on disk, invisibly)
    Add to your mappings file like this:
    MESSAGE-SAVE-COPY
    tcp_local|*@your_domain|D|/usr/ip lanet/server5/msg-dusty/imta/queue/tcp
    local/*/* $Y/usr/iplanet/server5/msgsave/$1/$2
    Add more lines to capture both inbound and outbound. The above line captures mails sent to the internet.
    files get written to the desination directory, for your examination. Since there's no "message" sent, if the destination account gets full, no message gets sent back to give you away. Less performance impact, too.
    I have 4 lines in my MESSAGE_SAVE_COPY area, to capture messages for specific people. . You may need fewer or more, depending on your exact needs.

  • Exchange server 2013 ECP, OWA, Exchange Management Shell, Outlook access and a few more problems.

    Good Morning,
    I really need some help please.
    Our Server 2012 std. with Exchange 2013 std. installation was running like a dream. The tech responsible for our installation left the company to work in the UK and reported to us that there were minor issues with the installation that
    needed attention.
    on investigation we have found issues in that we cannot access ECP or OWA and in fact Internet explorer most of the time. on further investigation we found management shell for exchange gives errors on start up and new users and outlook cannot
    be added to the domain.
    On contacting the tech via phone he said he had issues with Certificates but could not help any further.
    I have googled the problems and read much in TechNet and believe that in order not to make things worse than they are to approach those that know more than I do at present. I am not sure where to start right now.
    Where do I start?????
    ps. There does not seem to be any backups that we can fall back on.
    regards  Tom

    Hi Winnie,
    Please check me on this. Authentication seems to be incorrectly configured.
    Attached below is the output from the commands you requested me to run.
    ecp
    Identity                      : NORTH2012-SERV\ecp (Exchange Back End)
    InternalAuthenticationMethods : {Ntlm, WindowsIntegrated}
    BasicAuthentication           : False
    WindowsAuthentication         : True
    DigestAuthentication          : False
    FormsAuthentication           : False
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Identity                      : NORTH2012-SERV\ecp (Default Web Site)
    InternalAuthenticationMethods : {Basic, Fba}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : True
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    OWA
    Identity                      : NORTH2012-SERV\owa (Exchange Back End)
    InternalAuthenticationMethods : {Ntlm, WindowsIntegrated}
    BasicAuthentication           : False
    WindowsAuthentication         : True
    DigestAuthentication          : False
    FormsAuthentication           : False
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    Identity                      : NORTH2012-SERV\owa (Default Web Site)
    InternalAuthenticationMethods : {Basic, Fba}
    BasicAuthentication           : True
    WindowsAuthentication         : False
    DigestAuthentication          : False
    FormsAuthentication           : True
    LiveIdAuthentication          : False
    AdfsAuthentication            : False
    OAuthAuthentication           : False
    ExternalAuthenticationMethods : {Fba}
    regards
    Tom

  • Portlet Exchange 2000 view content messages not found

    I installed and configured the portlet exchange 2000 (March 2003).
    I can access the inbox.asp, calendar.asp and contacts.asp the login is OK, but when I want to view the content for a message show me the error file not found,
    I review many times the configuration and was Ok.
    Do you have any information about this??
    Thank you
    Regards

    Hi,
    From your posts it seems like an issue with the setup of the Exchange Portlets.
    With Exchange portlet you need do the following:-
    1. Installing the ASP files on Internet Information Server
    2. Updating provider.xml
    3. Publishing the Microsoft Exchange 2000 Portlets
    4. Creating the External Application
    5. Registering the Microsoft Exchange 2000 Provider
    Each of these tasks have been elaborated in the install document and I am sure that you must have followed the same. Just verify these steps to ensure that you have not missed out on anything.
    Ideally with Exchange Portlets, if you have followed all the steps and your setup is in line with the requirements you should not run into these problems.
    If you still are running into erros, please mention the Portal version, Exchange version, IIS version and the Machine setup too.
    Take care,
    Manoj

  • (OT) Incompatible Apache Mod-Rewrite Rules

    The following Apache mod-rewrite rule works:
    RewriteRule ^About/([a-zA-Z0-9_/-]+)/?$
    About/index.php?bout=$1 [L]
    It displays URL's like mysite/About/Webmaster and
    mysite/About/Search.
    I've finally figured out how to apply a mod-rewrite rule to
    my site's
    home page...
    RewriteRule ^/?([-a-zA-Z0-9_/]+)/?$ /index.php?home=$1 [L]
    It displays URL's like mysite/Arizona and mysite/Africa.
    But when I combine them...
    RewriteRule ^/?([-a-zA-Z0-9_/]+)/?$ /index.php?home=$1 [L]
    RewriteRule ^About/([a-zA-Z0-9_/-]+)/?$
    About/index.php?bout=$1 [L]
    The first rewrite rule appears to knock the second rule out
    of action.
    Does anyone know how to modify either rewrite rule to make
    them compatible?
    Thanks.

    On 4/26/06 8:52 AM, "David Blomstrom" wrote:
    > The following Apache mod-rewrite rule works:
    >
    > RewriteRule ^About/([a-zA-Z0-9_/-]+)/?$
    About/index.php?bout=$1 [L]
    >
    > It displays URL's like mysite/About/Webmaster and
    mysite/About/Search.
    >
    > I've finally figured out how to apply a mod-rewrite rule
    to my site's
    > home page...
    >
    > RewriteRule ^/?([-a-zA-Z0-9_/]+)/?$ /index.php?home=$1
    [L]
    >
    > It displays URL's like mysite/Arizona and mysite/Africa.
    >
    > But when I combine them...
    >
    > RewriteRule ^/?([-a-zA-Z0-9_/]+)/?$ /index.php?home=$1
    [L]
    > RewriteRule ^About/([a-zA-Z0-9_/-]+)/?$
    About/index.php?bout=$1 [L]
    >
    > The first rewrite rule appears to knock the second rule
    out of action.
    > Does anyone know how to modify either rewrite rule to
    make them compatible?
    >
    > Thanks.
    I'm not an expert on mod_rewrite, but you might be able to
    get what you want
    simply by reversing the order of the rules:
    RewriteRule ^About/([a-zA-Z0-9_/-]+)/?$
    About/index.php?bout=$1 [L]
    RewriteRule ^/?([-a-zA-Z0-9_/]+)/?$ /index.php?home=$1 [L]
    In theory, that should redirect your /About pages, and the
    [L] tells Apache
    not to parse any more rewrite rules, so the first rule (which
    looks like it
    simply redirects *everything*) wouldn't come into play.
    There's something about times when Apache still parses
    rewrite rules even
    after the [L] flag, though, so that might not work. Why don't
    you see if
    that works, and if it doesn't, we can look at it further.
    Sonjay

  • IAS 6.0 and Rewrite rules

    Hi,
    I have worked with Apache JServ in which you have the concept of Rewrite
    rules in one of the property files.
    How does the same concept work with iAS 6.0?
    Thanks
    Uzma

    Based on my (limited) understanding of JServ rewrite rules, rewrite rules
    are essentially a regex tool for URL modification that takes place at the
    webserver tier before the servlet engine sees the request.
    So, you should be able to implement something similar in an NSAPI plug-in at
    the webserver tier. Or by using an ISAPI plug-in if you are using IIS, or
    mod_rewrite if you are using Apache. (I don't know if anyone has already
    implemented such a plug-in in NSAPI or ISAPI). Just make sure that the
    re-write plug-in is before the iAS plug-in.
    You could try to do something similar with servlet mapping at the iAS tier,
    but that route is much more limited. Wildcards as opposed to regular
    expresssions. And you ability to map servlets would be limited to URL's that
    are already in the context of the webapp.
    David
    Uzma Siddiqui wrote:
    Hi,
    I have worked with Apache JServ in which you have the concept of Rewrite
    rules in one of the property files.
    How does the same concept work with iAS 6.0?
    Thanks
    Uzma

  • LDAP Auth Rewrite Rule in Mapping file

    Hi,
    We are trying to set LDAP Auth Rewrite rule in mapping file to get users First Name & Last Name or Display name & Mail Address from LDAP Server instead of users individual client settings.
    In Messaging 5.2 we had the follwoing setting, but it does not work any more for Messaging 6.2:
    LDAP Auth Rewrite Entry in mapping file:
    AUTH_REWRITE
    *|*|*|*@* $]ldap:///dir1.domain.com:389/o=domain.com?cn?sub?(uid=$3)[$ <$]ldap:///dir1.domain.com:389/o=domain.com?mail?sub?(uid=$3)[>$Z
    We are running:
    Sun Java(tm) System Messaging Server 6.2-3.04 (built Jul 15 2005)
    libimta.so 6.2-3.04 (built 01:43:03, Jul 15 2005)
    SunOS mta 5.10 Generic_118833-03 sun4u sparc SUNW,Sun-Fire-V240
    ll appreciate for any help or clue
    Thanks

    Thanks Jay,
    Well, here is what we want to achieve.
    We are looking for re-writing the FROM address of Sender against the LDAP Entry as cn <[email protected]>. This should solve problem of where users have entered wrong FROM information on their clients or trying to spoof FROM address to other users.
    Currently, The system delivers e-mail with FROM headers as per client entry instead of re-writing it against AUTHENTICATED userid.
    Following is the IMTA.CNF and MAPPINGS lines:
    IMTA.CNF
    ! ims-ms
    ims-ms defragment subdirs 20 notices 1 3 backoff "pt5m" "pt10m" "pt30m" "pt1h" "pt2h" "pt4h" maxjobs 2 pool IMS_POOL fileinto
    $U+$S@$D
    ! tcp_local
    tcp_local smtp mx single_sys remotehost inner switchchannel identnonenumeric subdirs 20 maxjobs 7 pool SMTP_POOL maytlsserver
    maysaslserver saslswitchchannel tcp_auth missingrecipientpolicy 0 mailfromdnsverify dropblank vrfyhide
    ! tcp_intranet
    tcp_intranet smtp mx single_sys subdirs 20 dequeue_removeroute maxjobs 7 pool SMTP_POOL maytlsserver allowswitchchannel sasls
    witchchannel tcp_auth missingrecipientpolicy 4 mailfromdnsverify dropblank vrfyhide
    ! tcp_extranet
    tcp_extranet smtp mx single_sys subdirs 20 noreverse maxjobs 7 pool SMTP_POOL mustsaslserver allowswitchchannel saslswitchcha
    nnel tcp_auth vrfyhide dropblank mailfromdnsverify dropblank missingrecipientpolicy 4
    ! tcp_submit
    tcp_submit submit smtp mx single_sys mustsaslserver maytlsserver missingrecipientpolicy 4
    ! tcp_auth
    tcp_auth smtp mx single_sys mustsaslserver missingrecipientpolicy 4 authrewrite 3
    MAPPINGS file
    AUTH_REWRITE
    *|*|*|*@* $]ldap:///dir.domain.edu:389/o=domain.edu,dc=domain,dc=edu?cn?sub?(uid=$3)[$ <$]ldap:///dir.domain.edu:389
    /o=domain.edu,dc=domain,dc=edu?mail?sub?(uid=$3)[>$Z
    Thanks for your help

  • Glassfish 3.1.2.2  rewrite rule

    What's installed
    Glassfish 3.1.2.2
    Apex Listener 2.0.4
    Apex_4.2.2
    Does anyone know if its possible to use Glassfish to Rewrite an inbound URL
    such as
    https://www.mysite.com
    to
    https://www.mysite.com/apex/f?p=1400:1
    Under Weblogic it was  ssl.config
    RewriteEngine   on
    Rewrite Rule ^/$/apex/f?p=1400:1 [R=301, L]
    Thanks
    Derek

    I don't know where this setting is specified but if I were you I'd be looking into the glassfish documentation and posting in a glassfish forum rather than posting in a webservices forum.
    http://www.java.net/forums/glassfish/glassfish

Maybe you are looking for

  • Sat Pro M10 will not boot up anymore

    My Sat Pro M10 worked fine until yesterday. I removed the harddrive just to check Part number (as i need to install a larger drive and want to make sure I got it right)and then re-inserted it. Now it boots up as far as the XP Pro loading screen (blac

  • O/S 6

    I recently updated to OS 6 and since then I cannot use BB Apps World. I tried re-downloading it and I keep getting a message that my operating system is unsupported. Any idea what the problem is?

  • Unable to extend table ONT.MLOG$_OE_ORDER_LINES_ALL

    Can someone help me on this one? I had the below error, and most of the references I've looked up suggests that I drop and recreate the table... Are there any impacts if I drop the log? thanks ORA-12096: error in materialized view log on "ONT"."OE_OR

  • IMac/Yosemite super sluggish

    Thanks in advance to all who read and assist! My system is moving slower and slower these days, especially during Time Machine backups, but also at other times, for reasons I can't figure out.  Here is what EtreCheck says: Problem description: System

  • SUS POs update with Goods Receipts and Invoices Information

    Hi SRM Experts, We have a SRM - SUS - R/3 landscape. 1. We create POs in SRM (extended classic scenario) and transfer them to R/3 (via RFC) and to SUS (via XI – Interfaces PurchaseOrderRequest_Out and PurchaseOrderChangeRequest_Out). 2. We post Goods