IPlanet 5.1Redirect Undeliverable Mail To Another Server

First off, apologies for running such an outdated product! (And sorry if this is the wrong forum!)
I am looking for a way to configure my iPlanet 5.1 message server such that if a message is sent to a user who isnt in the directory, instead of generating a "5.1.1" illegal alias message, it forwards the mail to another mailserver for delivery. (This should help us to enable users who we have migrated from the system to continue to receive mail).
Can anyone give me any pointers?

iMS 5.1 is indeed kind of old, but this should work in any case.
You want to add a "domain smarthost".
Check the provisioning guide, here:
http://docs.sun.com/source/816-6018-10/domains.htm#29147

Similar Messages

  • Accept Mail from another server

    We are testing a migration scenario and are running into a few issues. I have our new mail server setup with the same domain as our old. We will slowly be migrating from the old to the new, sort of like a split domain. The old server is running GroupWise 7, the new is Zimbra based.
    What I am attempting to do is allow for users on Zimbra (using the same domain) to be able to send messages to users on Groupwise. So far I have been unable to find a setting in GWIA that allows me to say it is "ok" to accept email from this server. I believe that since both the Zimbra and GW servers are using the example.com domain GW is not allowing messages to go to mailboxes.
    How do I setup Groupwise to allow messages from another server using the same domain?

    I doubt that is it. Your GW system is set to receive messages for
    @example.com and shouldn't care where they have come from. Your Zimbra
    server should be set to forward to GW as a smarthost and have it forward
    undeliverables to that host.
    Usually, the Zimbra side is going to have problems, especially if it has all
    of the addresses configured on it. It knows that it handles email for
    example.com and will try to deliver it to itself, unless you do something
    with undeliverables instead.
    I think.......................
    "dabrown ksu" <[email protected]> wrote in message
    news:[email protected]..
    >
    > We are testing a migration scenario and are running into a few issues. I
    > have our new mail server setup with the same domain as our old. We will
    > slowly be migrating from the old to the new, sort of like a split
    > domain. The old server is running GroupWise 7, the new is Zimbra based.
    >
    > What I am attempting to do is allow for users on Zimbra (using the same
    > domain) to be able to send messages to users on Groupwise. So far I have
    > been unable to find a setting in GWIA that allows me to say it is "ok"
    > to accept email from this server. I believe that since both the Zimbra
    > and GW servers are using the example.com domain GW is not allowing
    > messages to go to mailboxes.
    >
    > How do I setup Groupwise to allow messages from another server using
    > the same domain?
    >
    >
    > --
    > dabrown_ksu
    > ------------------------------------------------------------------------
    > dabrown_ksu's Profile: http://forums.novell.com/member.php?userid=90079
    > View this thread: http://forums.novell.com/showthread.php?t=415905
    >

  • Sending Mail to Another Server If User Does Not Exist

    We have a single domain with 1 Exchange 2003 server. 
    Recently another (non-Exchange) server was added with about 300 users on it.  We've set up those users as contacts on the Exchange server.  All users have the same email suffix ([email protected])
    Here is our issue:  When we try and send an e-mail from Exchange to the non Exchange mail server, it fails with an NDR.  It appears as though Exchange is not looking beyond itself for the user.  How do you tell Exchange "If you cant find
    the user here, send the e-mail to x server?
    Thanks.

    Here's the explanation for the grayed-out checkbox:
    https://social.technet.microsoft.com/Forums/en-US/615d0285-e536-4eb9-ae49-6768e647a5df/recipient-policy-smtp?forum=exchangesvrsecuremessaginglegacy
    The second question is answered in the article I referenced.  You create an SMTP connector with the domain in the address space and the SMTP server that hosts it as a smart host.  That article suggests you put it in the SMTP virtual server, but
    use an SMTP connector instead.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • SENDING MAIL TO ANOTHER SYSTEM IN INTRANET BY USING SMTP

    hi
    i am able to send simple smtp messages within the single localhost but i am not able to send it to another system ,plz help me .i also need to get the reply from that system since i am the server. i am using jsp code.
    i have enclosed the code
    mail.jsp
    <%@ page language="java" import="javax.naming.*,java.io.*,javax.mail.*,
    javax.mail.internet.*,com.sun.mail.smtp.*"%>
    <html>
    <head>
    <title>Mail Send:Defect Tracking System</title>
    </head>
    <body>
    <%
    try{
      Session mailSession = Session.getInstance(System.getProperties());
      Transport transport = new SMTPTransport(mailSession,new URLName("cl301"));
      transport.connect("cl301",25,null,null);
      MimeMessage m = new MimeMessage(mailSession);
      m.setFrom(new InternetAddress(%><%request.getParameter("from")%><%));
      Address[] toAddr = new InternetAddress[] {
                  new InternetAddress(%><%request.getParameter("to")%><%)
      m.setRecipients(javax.mail.Message.RecipientType.TO, toAddr );
      m.setSubject(%><%request.getParameter("subject")%><%);
      m.setSentDate(new java.util.Date());
      m.setContent(%><%request.getParameter("description")%><%, "text/plain");
      transport.sendMessage(m,m.getAllRecipients());
      transport.close();
      out.println("Mail Send!");
    response.sendRedirect("Login.jsp");
    catch(Exception e){
      out.println(e.getMessage());
      e.printStackTrace();
    %>
    </body>
    </html> mailApi.jsp
    <%@ include file="TemplateObj.jsp" %>
    <%@ include file="Common.jsp" %>
    <%!
    %>
    <html>
    <head>
    <title>Mail:Defect Tracking System</title>
    </head>
    <link rel="stylesheet" href="style/stylesheet.css" type="text/css">
    <body>
    <table>
    <tr><td><img src="images/header.gif"</td></tr></table>
    <br>
    <table align="right">
    <tr><td><img src="images/bug_chick.gif"></td></tr></table>
    </p>
    </form>
    </td>
    </tr>
    </table>
    <table border="1" width="50%" cellpadding="0" cellspacing="0">
    <tr>
    <td width="100%">
    <form method="POST" action="mail.jsp">
    <table border="1" width="100%" cellpadding="0" cellspacing="0">
    <h1>Send Bug Mail</h1>
    <tr>
    <td width="50%"><b>To:</b></td>
    <td width="50%"><input type="text" name="to" size="30"></td>
    </tr>
    <tr>
    <td width="50%"><b>From:</b></td>
    <td width="50%"><input type="text" name="from" size="30"></td>
    </tr>
    <tr>
    <td width="50%"><b>Subject:</b></td>
    <td width="50%"><input type="text" name="subject" size="30"></td>
    </tr>
    <tr>
    <td width="50%"><b>Description:</b></td>
    <td width="50%"><textarea name="description" type="text"
    cols="40" rows="15" size=100>
    </textarea>
    </td>
    </tr>
    <tr>
    <td><p><input type="submit" value="Send Mail" name="sendMail"></td>
    </tr>
    </table>
    </body>
    </html>

    do NOT use JSP for anything except presentation of data, NEVER use it for anything else.
    If you need Java code inside a JSP, it shouldn't be a JSP.
    What makes you think you can't send mail to another server?
    What errors are you getting (I can guess, and I have 2 very strong contenders for the title, but I can't be sure)?
    To find out what replies a mailserver can give, read the relevant RFCs. Of course if you close the connection without waiting for (let alone handling) those responses you're never going to see them.

  • Mail 2.1.1: Can't read mails from Exchange server

    Effect: *Mail 2.1.1* contacts the Exchange server successfully, which I checked with the operator, looking directly over his shoulder, but Mail 2.1.1 does not load any e-mails. Mail 2.1.1 loads down mails from another server with unknown software (gmx.de) successfully.
    Mail 2.1 works nicely with absolutely identical settings with both mail servers
    I am using Mail 2.1.1/MacOS 10.4.10 on my G4 and MacBook Pro, Mail 2.1/MacOS 10.4.10 on my G5.

    No solution found - works again. Please no questions.

  • How do I configure OS X Server (Mountain Lion) to deliver mail from another domain to my mailbox?

    How do I configure OS X Server (Mountain Lion) to deliver mail from another domain to my mailbox?
    I run a personal Server at my office. It's configured under my own domain as server.mydomain.com. It's setup that it properly receives and sends e-mail for mydomain.com. I use my own mailbox [email protected] to get all my personal mail.
    I'm looking to add another domain as a secondary way for people to get to my content and information.
    I want the same address [email protected] and [email protected] to arrive in the same mailbox at my server.
    How do i do that?

    it does look like you can add virtual domains in the GUI of Server.app on at least some versions, but I don't have an OS X Server 10.8 version handy to check.
    I'd encourage spending some time to learn the command line.  In general, the payoff for learning the command line will be worth the effort expended.  You're running a mail server here and sooner or later the capabilities of the GUI will fail you.  This whether due to a configuration omission in the GUI itself, or due to the need to troubleshoot a malfunctioning mail server, a need to automate one or more of the Postfix-related sequences, or some other IT-related task.  Entirely FWIW, of course.
    Here's a cut-and-paste of the sequence just used to test the command line access to the Postfix configuration, first fetching the current value, appending example.com as the second domain, then displaying the new value, then restarting the Postfix server.  Don't enter the dollar signs; just the postconf command and following.  Adjust example.com to match your domain...
    $ postconf mydestination
    mydestination = $myhostname, localhost.$mydomain, localhost
    $ sudo postconf -e 'mydestination = $myhostname, localhost.$mydomain, localhost, example.com'
    Password: {your admin password here}
    $ postconf mydestination
    mydestination = $myhostname, localhost.$mydomain, localhost, example.com
    $ sudo postfix reload
    The Postfix and Postconf commands work irrespective of the OS X Server version; the tools reference the data files as needed.

  • When I try to send e-mail I get an error message stating that the e-mail address was rejected by the server.  When I send to e-mail from another address, I get back an error saying the e-mail address is unknown.  My e-mail has worked fine for years until

    When I try to send e-mail I get an error message stating that the e-mail address was rejected by the server.  When I send to e-mail from another address, I get back an error saying the e-mail address is unknown.  My e-mail has worked fine for years until yesterday.  HELP!

    The specific text of the error message is very important here — I'm not sure exactly you're encountering here.
    If you're able to connect to your email server and are able send email to other email addresses and if the failures are specific to one email recipient address, then please contact the intended recipient of the failing email, and confirm their address is valid.  (This is the way I'm reading your question.)
    If you are unable to send any email to any other email addresses and this is specific to your email address, then try the web mail client interface (if one is available) to verify your login user and password, and check with your email ISP for assistance.  If your email password works via web mail, follow this Apple troubleshooting guide, then — if everything else fails — I'd probably then entirely remove the email account from Mail.app and re-add it per your email ISP's particular setup requirements.  (Some issue with the setup or maybe a corrupt setting in OS X or a problem at the mail ISP servers is a common problem, but this effects attempts to send to all email addresses via that account.)
    An email account setup is specific to an email provider, unfortunately.   If you're using one of the more common email ISPs, then there are usually setup guides and frequently-asked questions posted online.

  • The surver for e-mail used as Apple-ID is going to shut down.  How do I change my Apple-ID to another server?

    The surver for e-mail used as Apple-ID is going to shut down.  How do I change my Apple-ID to another server/anothe e-mailadress?

    RISEABOVE wrote:
    HOW?
    Change your Apple ID - Apple Support

  • How do I configure Server 3.0 to deliver "undeliverable" mail to a specific "catchall email address?

    How do I configure Server 3.0 to deliver "undeliverable" mail to a specific "catchall email address?
    I had this working in Server 2.0  dunno why it doesn't now, but I can't find the config.

    It's fairly straight forward and there is a GUI option to help you.
    In the Server app, go to Users. Select the User you want to create email aliases for. Right click, or hold down Shift-Ctrl and click on the name. Select 'Advanced Options...' from the menu. You can then enter as many aliases as you want in the 'Aliases'.
    For example: [email protected], @xyz.co.uk, [email protected]
    My example is overkill as I only really needed to add '@xyz.co.uk' as a catch all get everything sent to that domain delivered to that users email address.

  • Undeliverable Mail in Postfix

    I would like to redirect all undeliverable messages to another host for delivery. There are options to redirect undeliverable mail to an email address but this is not what I want. I need it to go to another mail host.
    Does anyone know how to do this? Thanks.

    hmmmm
    I may have an answer for you, but am not totally sure of your problem.
    At home, I have several e-mail addresses.. some for AOL, one for work and a few for my ISP at home, and each e-mail account has been set to use a separate outgoing mail server.
    So I send an e-mail to someone from home from my work e-mail address(which is set to use my work outgoing mail server), and for some reason, it is not deliverable... Mail gives me a pop up asking if I'd like to send via another method.
    So I select to send via my home ISP. This simply changes the outgoing mail server for that single message. The mail is received by the reciepent, as if it were sent from my work e-mail address, even though it went out thru my home ISP mail server.
    Now perhaps you are aware of this and wish to have Mail automatically take care of this for you..but I am unaware of a way to make this happen. What you CAN do is this: If you have an outgoing mail server that doesn't "play nice" all the time, and you have a mail server that DOES, simply change the outgoing mail server on the account that is giving you problems to the "nice" mail server.
    Ugh.. this sounds twisetd and mixed up.. let me know if this helps whatsoever.

  • Undeliverable Mail for Postfix

    I would like to redirect all undeliverable messages to another host for delivery. There are options to redirect undeliverable mail to an email address but this is not what I want. I need it to go to another mail host.
    Does anyone know how to do this? Thanks.

    Are you trying to work around the issue of ISPs like AOL and Roadrunner blocking any mail from your postfix smtp server because your computer, that is running postfix, lives in dynamic IP space?

  • "Sent Messages" folder not receiving new sent mails after a server change

    My provider just moved my account to another server. The IMAP accounts needed to be re-established on my wife's PC in her program. So we know the files are all there on the new server.
    Funny thing is that it's not working on Mail on my iBook. And when these changes took place, my sidebar contents in Mail changed on me. I have sent some mail to various places since this happened, but none of these new mails have copies which are saved in my "Sent Items" or "Sent Messages" folders. So I have no record now of anything new since the change happened. I DO have copies of mail in there that are pre-change.
    I checked my preferences for mailbox behaviors, and the "Store Sent Items on the Server" is checked, so I'm not sure what's up.
    For the record I'm running OS X 10.4.7 and Mail 2.1.
    I have deleted and re-established my two email accounts in Mail in order to make them re-establish new links with the server, so I'm seeing my folders, but no new mail sent is showing up in my Sent Messages folder.
    I would appreciate if anyone knows if there could be an issue with Mail, my new host's servers, or what. It looks like a Mail issue to me, since my wife's PC is reading everything fine (and she is running Thunderbird as her client).
    Thanks!
    iBook G4   Mac OS X (10.4.7)  
    iBook G4   Mac OS X (10.4.6)  
    iBook G4   Mac OS X (10.4.7)  

    You're welcome.
    I don't think it's your fault. Different IMAP servers use different naming conventions, and the Mailbox > Use This Mailbox For command is meant to let you tell Mail which folder should be used for what purpose, but you shouldn't have to use it just to prevent your mail from being lost. At the very least, Mail should be able to use its own default Sent Messages folder without you having to do anything. I don't know why Mail fails to do this properly so often.
    Worse yet, not only does Mail sometimes fail to use the Sent Messages folder that's already there, but it doesn't even warn you that it's failing to save your sent messages as you've told it to.

  • Mail For Exchange - Server Config Query

    Hi there.
    We are in the process of rolling out new Mobile Phones throughout the business - namely the Nokia E51.
    I am also the IT system admim, and we have a run into a problem.
    We have 6 back end Exchange servers containing the users mailboxes. We have 1 front end Exchange Server, which is primarily used to handle all Webmail requests.
    The problem I have is that some of the Exchange Servers do not seem to like MfE. All mailboxes on all servers work fine with Outlook Web Access.
    On The Nokia E51, if I put in the credentials of userA for instance, I get the message on the phone "Error In Exchange Server. Try Again Later" But userB on another server works fine. And if i move the mailbox of UserA onto say the same mail server as UserB, MfE works fine!
    I can eliminate SSL certificates, and the front end setup, as some servers work and some don't. So it must be an Exchange or IIS setting on one of the servers which don't work?
    All Exchange Servers are Exchange 2003 SP2.
    What settings would be different between the servers to cause this error? I've hunted and hunted for possible causes and keeping getting no-where.
    Many thanks in advance,
    Colin.

    I get the same error as well. My phone will work for a while (E71), then I start getting errors. The "Error in Exchange server. Try again later" is a new one though.
    I really don't want to have to buy roadsync, that program has always worked just fine for me. I know it's not a configuration error because of that.

  • With an IMAP account, if "Store sent messages on the server" is checked does Mail only store mail on the server?

    With an IMAP account, if "Store sent messages on the server" is checked (in Mailbox behaviors) does Mail only store sent mail on the server?
    So should it not be checked if you want Mail to store sent mail on the server and the computer?
    Thank you.
    iHope

    Hi Norm G,
    Thanks for your comments and the link to further information.
    With it checked you will get both on the server and the Mac.
    I have it checked, yet when I pause the curser over Sent mailbox the tooltip says "Contents stored on server. Name on server: Sent Messages". Does this mean stored only on the server or also on the server?
    What does your tooltip say?
    At the moment sent emails only appear in that Sent mailbox. If Mail also stores them on the Mac should they also appear in another Sent folder "On My Mac"?
    Thanks for your help.
    iHope

  • Copy Undeliverable Mail To / luser_relay no worky?

    Hi everyone,
    I know it's a despised feature, but I just need it working until I'm confident everything has been migrated well. I'm of course referring to "Copy Undeliverable Mail To:". When I first turned it on, and tested in, mail was still bouncing:
    Jun 7 14:07:23 server postfix/pipe[2354]: DDD381CA53F: to=<[email protected]>, relay=dovecot, delay=2180, delays=2180/0/0/0.01, dsn=4.1.1, status=SOFTBOUNCE (user unknown)
    I assumed that Server Admin was just enabling luser_relay in /etc/postfix/main.cf, but it was not, Rather, it was changing /etc/MailServicesOther.plist:
    <key>lmtpluserrelay</key>
    <string>catchalluser</string>
    <key>lmtpluser_relayenabled</key>
    <true/>
    I disabled it there and tried manually setting luser_relay in /etc/postfix/main.cf.
    Neither solution seemed to work. Anyone successfully have this working?

    OK. I can see your problem.
    Well, at least users are forced to fix the faulty address immediately. By getting a bounce later most users won't
    I know this is not the answer you were looking for so here you go (although I actually think user education never hurts and have not implemented this on my high traffic servers ;-):
    Are your users being forced to use SMTP authentication to send? If not make sure you have this in place as the first step. This is important so that your security is not compromised.
    Now look at your /etc/postfix/main.cf and towards the end look for
    smtpdrecipientrestrictions = .......
    You'll see something along these lines:
    smtpdrecipientrestrictions = permitsaslauthenticated, rejectunauthdestination, permit_mynetworks, rejectrblclient sbl-xbl.spamhaus.org, rejectrblclient relays.ordb.org, permit
    See if it includes rejectunauthdestination and/or rejectunverifiedrecipient and remove those.
    This should do the trick (not knowing your configuration there is always a chance something doesn't work as expected).
    The drawback is that this is now true for all senders and thus mail will get accepted first and bounced later if for unknown users.
    You can "finetune" this so that it applies only to your local users, but this requires quite a bit of fiddling around with your configuration and will "break" Server Admin. If you don't mind, see the following page for more info or ask again
    http://www.postfix.org/postconf.5.html
    Alex

Maybe you are looking for