Invalid recipient address in SMTP Configuration

Hi,
We are unable to send mails to external email id. We have two domains xyz.com and abc.com. We have installed all SAP server with xyz.com as FQDN. All email addresses in the company having user#xyz.com and user#abc.com for the same person. If we send mail from outlook to both user#xyz.com and user#abc.com the mail is reaching the recipient.
But from SAP if we want to send mail to both mail only goes to user#xyz.com. If we want to send to user#abc.com the we am getting  error "No delivery to user#abc.com, invalid recipient address"
In Scot we have given xyz.com in default domain. In the connection we have tick the Node in use, then given Mail Host as mailserver.xyz.com, Mail port as 25, Code Page 0 No Conversion into Other Character Set and in the Address Area we have given *.
In Instance profile we maintained,
icm/server_port_2                           PROT=SMTP,PORT=25000
icm/server_port_1                           PROT=SMTP,PORT=0
is/SMTP/virt_host_1                         *.25000
is/SMTP/virt_host_0                         .
icm/server_port_0                           PROT=HTTP,PORT=80$$
ms/server_port_0                            PROT=HTTP,PORT=81$$
Please let me know what is missing in my configuration. I think configuration is correct as mail is going to xyz.com but not going to abc.com
Note: I user # instead of @. If I use @ in SDN forum then it treated as email id which is not allowd.
Regards,
Sudip

Ok, this sounds like a relay issue. Messages sent to the local domain does not require authentication while when going to external domains they need to be authenticated, as SAP does not support SMTP username/password authentication you need to maintain the IP Address of your SAP system on the Relay Agent of your SMTP Server so they can be delivered. Talk to your Mail Team,
Also, If you have configured your system to use xyz domain, you should maintain the master data of the users (SU01) with an email account of the same domain.
Regards
Juan

Similar Messages

  • #550 5.1.3 STOREDRV.Submit; invalid recipient address #SMTP# Exchange 2010

    We have one user who is getting undeliverable bounces for some emails they send. These bounces look like
    Delivery has failed to these recipients or groups:
    The format of the e-mail address isn't correct. A correct address looks like this:
    [email protected] Please check the recipient's e-mail address and try to resend the message.
    With the header:
    #550 5.1.3 STOREDRV.Submit; invalid recipient address #SMTP#
    Original message headers:
    Received: from xxxxxxxx ([2002:80e8:f350::80e8:f350]) by
     xxxxxxx ([::1]) with mapi id 14.02.0298.004; Wed, 5 Sep
     2012 11:30:27 +0100
    Content-Type: application/ms-tnef; name="winmail.dat"
    Content-Transfer-Encoding: binary
    From: xxxxxx
    To: xxxxx
    Subject: FW:
    Thread-Topic: Economics
    Thread-Index: Ac2GxPSoAC0JPealQhq9mnAnQxf7SQEiPj2gAADJepA=
    Date: Wed, 5 Sep 2012 11:30:27 +0100
    Message-ID: <7D0ACDCF411B26429DC7355744AEFF9A02D8AC@xxxxxx>
    Accept-Language: en-GB, en-US
    Content-Language: en-US
    X-MS-Has-Attach: yes
    X-MS-TNEF-Correlator: <7D0ACDCF411B26429DC7355744AEFF9A02D8AC@xxxxxxx>
    MIME-Version: 1.0
    X-Originating-IP: [xxx.xxx.xxx.xx]
    So far most of the bounces for this user appear to be to the same domain which takes the format xxx.ac.uk our domain is yyy.xxx.ac.uk
    We are currently using Exchange 2010 having migrated in the last month from 2003. We are also using an Edge server.
    Thanks for any help

    On Wed, 5 Sep 2012 11:52:43 +0000, Rah33 wrote:
    >I have noticed that so far the addresses that have bounced back are Mail Contacts that have been created on the Exchange server. If you go into the properties for one of these contacts you get a message saying that some properties are invalid and will
    be replaced with defaults. It also prompts to update the contact.
    If you update the contact does it eliminate the problem?
    What properties are invalid? It isn't uncommon to find "alias"
    properties that contain spaces or other characters that earlier
    versions (i.e. pre-Exchange 2007) allowed.
    Rich Matheisen
    MCSE+I, Exchange MVP
    --- Rich Matheisen MCSE+I, Exchange MVP

  • Invalid recipient address - while sending mails

    Hi Experts,
    I am trying to send a PDF form as a mail attachment from my SAP R/3 server (version ECC 6.0)
    Using the following code:
    PARAMETER : p_addr TYPE adr6-smtp_addr DEFAULT  'ashish.shah xyz.com'.
    *"Look up the generated function for the Book Flight Form
    DATA : l_name TYPE funcname.
    TRY.
        CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
          EXPORTING
            i_name     = 'Z_CUST_BOOK_FLIGHT_FORM'
          IMPORTING
            e_funcname = l_name
          EXCEPTIONS
            OTHERS     = 0.
      CATCH cx_fp_api_repository.                           "#EC NO_HANDLER
      CATCH cx_fp_api_usage.                                "#EC NO_HANDLER
      CATCH cx_fp_api_internal.                             "#EC NO_HANDLER
    ENDTRY.
    DATA : l_outputparams TYPE sfpoutputparams.
    *"Start form processing
    l_outputparams-getpdf = 'X'.
    CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
        ie_outputparams = l_outputparams
      EXCEPTIONS
        cancel          = 1
        usage_error     = 2
        system_error    = 3
        internal_error  = 4
        OTHERS          = 5.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *" Call the generated function for the Book Flight Form
    DATA : fp_docparams TYPE sfpdocparams,
           reservedonly TYPE bapisbodat-reserved,
           booking_data TYPE bapisbonew,
           fp_result    TYPE fpformoutput.
    fp_docparams-fillable = 'X'.
    fp_docparams-langu = sy-langu.
    CALL FUNCTION l_name
      EXPORTING
        /1bcdwb/docparams  = fp_docparams
        reserved           = reservedonly
        booking_data       = booking_data
      IMPORTING
        /1bcdwb/formoutput = fp_result
      EXCEPTIONS
        usage_error        = 1
        system_error       = 2
        internal_error     = 3
        OTHERS             = 4.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    DATA : pdf TYPE fpformoutput-pdf.
    pdf = fp_result-pdf.
    *"End the form Processing session
    CALL FUNCTION 'FP_JOB_CLOSE'
      EXCEPTIONS
        usage_error    = 1
        system_error   = 2
        internal_error = 3
        OTHERS         = 4.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *"Create and send the email
    DATA : bcs_exception TYPE REF TO cx_bcs.
    TRY.
    *"Add text to the email body
        DATA : l_subject      TYPE so_obj_des,
               l_mailtext     TYPE bcsy_text,
               l_mailtext_row TYPE soli.
        l_subject = 'Trip Creation Form'.
        CONCATENATE 'Please fill out the form and return it to:'
                    'ashish.shah xyz.com'
                    INTO l_mailtext_row.
        APPEND l_mailtext_row TO l_mailtext.
    *"Create the email document
        DATA : document   TYPE REF TO cl_document_bcs,
               num_rows   TYPE i,
               textlength TYPE so_obj_len.
        DESCRIBE TABLE l_mailtext LINES num_rows.
        num_rows = num_rows * 255.
        MOVE num_rows TO textlength.
        document = cl_document_bcs=>create_document(
                     i_type    = 'RAW'
                     i_text    = l_mailtext
                     i_length  = textlength
                     i_subject = l_subject ).
    *"Add ataachment
        DATA : attdoctype TYPE soodk-objtp,
               atttitle   TYPE sood-objdes,
               attsize    TYPE sood-objlen,
               pdftab     TYPE solix_tab.
        attdoctype = 'pdf'.
        atttitle = 'CreateFlight'.
        attsize = XSTRLEN( pdf ).
        pdftab = cl_document_bcs=>xstring_to_solix(
                    ip_xstring = pdf ).
        document->add_attachment( EXPORTING i_attachment_type = attdoctype
                                            i_attachment_subject = atttitle
                                            i_attachment_size = attsize
                                            i_attachment_language = sy-langu
                                            i_att_content_hex = pdftab ).
    *"Create persistent send request
        DATA : send_request TYPE REF TO cl_bcs.
        send_request = cl_bcs=>create_persistent( ).
    *"Add document to send request
        send_request->set_document( document ).
    *"Get sender object
        DATA : sender TYPE REF TO cl_sapuser_bcs.
        sender = cl_sapuser_bcs=>create( 'A146861' ) .
    *"Add sender
        CALL METHOD send_request->set_sender
          EXPORTING
            i_sender = sender.
    *"Create recipient
        DATA : recipient TYPE REF TO if_recipient_bcs.
        recipient = cl_cam_address_bcs=>create_internet_address(
                                                  p_addr ).
    *"Add recipient with its respective attributes to send request
        send_request->add_recipient( EXPORTING i_recipient = recipient ).
    *"Set send immediately
        send_request->set_send_immediately( 'X' ).
    *"Send document
        send_request->send( ).
        COMMIT WORK.
        WRITE: 'Email coantaining the Interactive form was sent'.
      CATCH cx_bcs INTO bcs_exception.
        DATA : ex_msg TYPE string.
        ex_msg = bcs_exception->get_text( ).
        WRITE: 'Caught exception.', ex_msg.
    ENDTRY.
    I get a Mail sending failure notification in my SAP Businesss work place, with the title "Cannot be sent: Trip Creation Form " With status as :
    Status for Recipient ashish.shah xyz.com:
         No delivery to ashish.shah xyz.com, invalid recipient address
    I have entered the correct Email IDs, but still getting this error.
    Can you guys help?
    Regards,
    Ashish Shah

    Hi Ravi,
    I have @ in all the email IDs in my code , but i have removed it from this post.
    It seems SDN has implemented some new check - where in it checks for Email IDs in the post and gives error when any email ID is encountered.
    Can you now spot anything else , which could be the cause for the status as Invalid receipient?
    Regards,
    Ashish Shah

  • Mailer object error message "SMTP: invalid from address. SMTP error 530 5.7.0 Must issue a STARTTLS command first. d5sm35857280yhl.19".

    I am trying to send an email from Lookout V6.6 using the Mailer object.  I have an email address setup through GMAIL and have verified it works.  Also, Lookout Mailer object is able to verify GMAIL server.  I get the following error message when trying to send the email: "SMTP: invalid from address. SMTP error 530 5.7.0 Must issue a STARTTLS command first. d5sm35857280yhl.19".  Anyone know what is causing this?

    Another method is to use a SMTP relayer, we have deployed them in the past.
    http://www.hmailserver.com/index.php?page=welcome
    Mike
    Forshock - Consult.Develop.Solve.

  • Major mail problem: "One or more recipient address was invalid"

    Hello,
    I had my iPhone 3G for 2 weeks now. I have been experiencing some major e-mail problems - basically, I cannot send e-mails to anyone except myself. When I type in my address (the same one that I send an e-mail from) it all goes well. When I type any other valid one, it does not get through. I keep on getting a pop-up message "Cannot send mail: One or more recipient address was invalid" - even though the addresses *are, actually, valid*.
    Does anyone know how to solve this problem? Happens both with usual e-mails and with pic forwarding. Many thanks for your help.
    Best,
    Dynamitri

    I'm using a POP account. Still - I can send to myself, can't send anywhere else.
    Might try deleting the account and then configuring it again. Hope it helps.
    And yeah, I have the latest software.
    Best,
    D.

  • One of the recipient addresses is invalid?

    every time that i open mail on my iphone it tells me that one of the recipient addresses is invalid. ????
    there is a message being sent how do i get to it to alliviate the problem?

    First off, check your sent for messages being sent out. Delete it if you can, and the message should stop appearing when you first open Mail.
    Next, I'm assuming this started happening after the 2.0 update? This seems to be the case for this issue. I have ran into this twice now and both were after the 2.0 update.
    Assuming you updated, try to remember if you had to reenter your email information manually on the iPhone again. If you did not, then it may have been backed up and re-synced to your iPhone automatically. With the current bugs, it'll be best to set up the account manually.
    +NOTE: Steps 1-4 may not be necessary. You may try step 5 first and if it doesn't work, perform the entire process.+
    The fix I found:
    *1. Delete the account on the iPhone.*
    Before doing this, be sure you know your settings to recreate this account. If it is one of the prebuilt email addresses (Gmail, AOL, Yahoo, MobileMe, etc), the account settings won't be an issue. If you are using a POP or IMAP account other than the ones built in, contact your email provider for account settings, or, alternatively, look in the Mail Settings on the iPhone before you delete it or online. Some settings include incoming and outgoing server host names, port numbers, whether SSL is used, and authentication type. Don't forget your username and password too!
    This may help some of you.
    http://www.apple.com/support/iphone/mailhelper/
    *2. Once deleted, recreate account*
    Enter Settings > Mail, Contacts and Calender > Add Account
    *3. Once created, test to see if you receive mail.*
    If not and you did before deleting the account, look into your settings, something may have been missed
    If it works, continue to the next step.
    *4. Check to see if issue still exists.*
    Compose a new message AND reply to one
    If it works, great. If not continue on.
    *5. Enter your Username and Password for your OUTGOING MAIL SERVER*
    This is the step that fixed the issue both times when I ran into them.
    Go into Settings > Mail, Contacts and Calendar > +Your Account+ > Tap the Outgoing (or SMTP) Server > Tap Primary Server > Enter Your Username and Password in the Optional fields.
    Username is usually the first part of your email address (everything before the @) or it can also be your entire email address. Password is the one you'd use to log into its webmail.
    Usually, these "optional" fields are truly optional. In this case, having them filled in fixed the issue.
    Actually, fixed it twice. Lastly, a hard reset (hold home and power button until screen goes completely off, ignore slide to power off) and a restore are other two options at the end.
    Hope this helps you folks.
    Good Luck,
    Tony

  • Trying to set up a group email "RAM" that will contain multiple email addresses.  Receive error messages "check SMTP settings" or "Invalid email address" when I try to send a message to the group.

    I am trying to set up the group email "RAM" that will contain multiple email addresses.  I have inputted the name "RAM" as a corporation.  In the section labeled "Email" I have inputed multiple email addreses so that when I want to send an email to the group "RAM" I just have to input the name "RAM" in the section labeled "To" , input the Subject in the Subject box & the email will be sent to the multiple addresses, yet when I do I receive either one of two error messages being "Invalid Email Address" or "Check SMTP settings" each of which allows me the option of with cancelling the email or send it anyway.

    Bump. I'd like to know, too. I even have some synched Groups from my Apple Address Book I email to using Apple Mail on the Powerbook, but I can't see how to do a group mailing on the Touch either.
    In normal Mail, I just start typing the name of the group, and it autocompletes, I hit return, and it fills in all addresses in the Group.

  • Getting "Cannot Send Mail - One of the Recipient  Addresses was Invalid"

    Mail was working fine under version 1. Upgraded my original iPhone to version 2 and couldn't send emails. Get "CANNOT SEND MAIL. ONE OF THE RECIPIENT ADDRESSES WAS INVALID. OK" message whenever I attempt to respond to an incoming email or when sending a new email. Sometimes "Sending" progress bar goes all the way to the end, but I still get this error message and mail is NOT sent. This is still the case after I upgraded to 2.02 HELP!

    I have since removed the email account and added it again. I tried this several times and came to the realization that the Apple iPhone software was not setting the account up properly. I saved the account even though I was warned by the software that it was not working properly. I then went ahead and carefully edited all the settings and made sure that they matched EXACTLY with those in MS Outlook. I also set Authentication to Password on both incoming at outgoing servers.
    I finally got it working. What a pain!!

  • Odd SMTP server behaviour - Recipient address rejected: Service is unavaila

    Hi,
    I noticed since upgrading to 10.6 that some emails took a long time to go through on my mail server. Looking at the logs it looks as if a lot of mails are being rejected on the first try with a ...
    450 4.7.1 <[removed]@[removed]>: Recipient address rejected: Service is unavailable
    The next attempt to deliver seems to succeed.
    Any suggestions where to look at what is going wrong? I have log level set to debug but there is no extra info so I am unsure which service is unavailable.

    http://discussions.apple.com/thread.jspa?threadID=2130446&tstart=0&messageID=102 60551#10260551

  • "One of the recipient addresses was invalid...

    I can send a new email, but when I try to reply to any email, I get this error message and the email just sits in the outbox.

    I get this same message even with new mails. And the recipient addresses are all valid. This suddenly started to happen after a long time of everything working just fine.
    Would love to find an answer to this problem.

  • Mail Server and SMTP Configuration (Leopard Server)

    Hello,
    Our setup: Mac OS X SERVER 5.2 - LEOPARD SERVER
    PowerPC G5
    Orange Internet connection via a router / DHCP
    We try to find such assistance in configuring your Mac book
    OS Server at your service.
    We set our server with a local area "domaine.intranet"
    We created users with the interface, and have an address
    "[email protected]."
    Our messaging system works internally with the client MAIL.
    We also have an Internet domain "domaine.fr", this area is hosted
    In online.net.
    We have personal e-mail addresses such as "[email protected]" always
    Hosted by online.
    We can check our e-mails via the client MAIL by IMAP.
    However, we do not send emails to the outside world, and especially
    "Domaine.fr" or "[email protected]."
    In the console admin Server:
    -- LETTERS: we have turned the SMTP protocol allowing mail
    Entrant, authorizing "Relayer outgoing mail over the host:
    Smtp.orange.fr "
    At the tab relay, we leave the config classic 127.0.0.0 / 8
    And 192.168.1.0/24.
    In the history of mail, there are "postfix / postfix-7563]: fatal: the
    Postfix mail system is not running, why then that the service operates on
    Priori!
    How can I be able to send emails to the outside knowing that we
    Use addresses' [email protected]. "
    Please tell us a direction to follow or procedure.
    Sincerely,
    ORIGINAL IN FRENCH
    Notre configuration : Mac OS X SERVER 5.2 - LEOPARD SERVER
    PowerPC G5
    Connexion internet orange via un routeur/DHCP
    Nous avons essayer de trouver cette aide à la configuration dans votre livre Mac
    OS Server à votre service.
    Nous avons configuré notre serveur avec un domaine local en "domaine.intranet"
    Nous avons créé des utilisateurs à l'aide de l'interface, et avons une adresse
    "[email protected]".
    Notre système de messagerie fonctionne en interne avec le client MAIL.
    Nous avons également un domaine internet "domaine.fr", ce domaine est hébergé
    chez online.net.
    Nous avons des adresses mail personnel du type "[email protected]" toujours
    hébergé chez online.
    Nous pouvons consulter nos emails via le client MAIL par IMAP.
    Par contre, nous n'arrivons pas à envoyer des emails à l'extérieur, et notamment
    sur "domaine.fr" ou "[email protected]".
    Dans la console d'admin Serveur :
    - COURRIER : nous avons activé le protocole SMTP en autorisant le courrier
    entrant, en autorisant "Relayer le courrier sortant via l'hôte :
    smtp.orange.fr"
    Au niveau de l'onglet relais, nous avons laisser la config classique 127.0.0.0/8
    et 192.168.1.0/24.
    Dans l'historique de courrier, il y a "postfix/postfix-script[7563]: fatal: the
    Postfix mail system is not running", pourquoi alors que le service fonctionne à
    priori !
    Comment faire pour pouvoir envoyer nos emails à l'extérieur sachant que nous
    utilisons les adresses "[email protected]".
    Merci de nous indiquer une direction à suivre ou une procédure.
    Cordialement,
    Message was edited by: serveurbense

    Hello,
    Thanks for the reply.
    I modified according to your advice and tried to send mail, but it does only internally. My mail.log gives me the following information:
    Apr 21 10:59:30 domaine postfix/smtp[4521]: 46D302308BE: to=<[email protected]>, relay=smtp.orange.fr[193.252.22.84]:25, delay=0.27, delays=0.05/0.01/0.16/0.05, dsn=5.0.0, status=bounced (host smtp.orange.fr[193.252.22.84] said: 554 <[email protected]>: *Recipient address rejected: Missing Authentication (in reply to RCPT TO command))*
    Apr 21 11:00:27 domaine postfix/qmgr[4582]: 2147323090F: removed
    Apr 21 11:00:27 domaine postfix/pipe[4608]: 022FF230937: to=<[email protected]>, relay=cyrus, delay=0.28, delays=0.01/0.04/0/0.23, dsn=2.0.0, status=sent (delivered via cyrus service)
    Apr 21 11:00:27 domaine postfix/smtp[4606]: 022FF230937: to=<[email protected]>, relay=smtp.orange.fr[193.252.22.86]:25, delay=0.31, delays=0.01/0.04/0.18/0.08, dsn=5.0.0, status=bounced (host smtp.orange.fr[193.252.22.86] said: 553 <[email protected]>: *Sender address rejected: Domain not found (in reply to MAIL FROM command))*
    Apr 21 11:00:27 domaine postfix/smtp[4606]: 022FF230937: to=<[email protected]>, relay=smtp.orange.fr[193.252.22.86]:25, delay=0.31, delays=0.01/0.04/0.18/0.08, dsn=5.0.0, status=bounced (host smtp.orange.fr[193.252.22.86] said: 553 <[email protected]>: Sender address rejected: Domain not found (in reply to MAIL FROM command))
    Apr 21 11:00:27 domaine postfix/cleanup[4600]: 602A423094E: message-id=<[email protected]>
    Apr 21 11:00:27 domaine postfix/bounce[4612]: 022FF230937: sender non-delivery notification: 602A423094E
    Apr 21 11:00:27 domaine postfix/qmgr[4582]: 602A423094E: from=, size=3531, nrcpt=1 (queue active)
    Apr 21 11:00:27 domaine postfix/qmgr[4582]: 022FF230937: removed
    Apr 21 11:00:27 domaine postfix/pipe[4608]: 602A423094E: to=<[email protected]>, relay=cyrus, delay=0.06, delays=0.01/0/0/0.05, dsn=2.0.0, status=sent (delivered via cyrus service)
    Apr 21 11:00:27 domaine postfix/qmgr[4582]: 602A423094E: removed
    Apr 21 11:01:10 domaine postfix/postfix-script[4664]: refreshing the Postfix mail system
    Apr 21 11:01:10 domaine postfix/master[2938]: reload configuration /etc/postfix
    Apr 21 11:01:26 domaine postfix/smtpd[4516]: disconnect from domaine.intranet[192.168.1.11]
    Apr 21 11:02:10 domaine postfix/postfix-script[4734]: refreshing the Postfix mail system
    I am looking for solutions to correct mistakes 553 and 554, hoping that this will allow us to send mail out.
    Do you have any other suggestions?
    Thank you.
    Bonjour
    merci pour la réponse.
    J'ai modifié selon vos conseils et essayé d'envoyer des mails, mais ça ne marche qu'en interne. Mon mail.log me donne les informations suivantes:
    Apr 21 10:59:30 domaine postfix/smtp[4521]: 46D302308BE: to=<[email protected]>, relay=smtp.orange.fr[193.252.22.84]:25, delay=0.27, delays=0.05/0.01/0.16/0.05, dsn=5.0.0, status=bounced (host smtp.orange.fr[193.252.22.84] said: 554 <[email protected]>: *Recipient address rejected: Missing Authentication (in reply to RCPT TO command))*
    Apr 21 11:00:27 domaine postfix/qmgr[4582]: 2147323090F: removed
    Apr 21 11:00:27 domaine postfix/pipe[4608]: 022FF230937: to=<[email protected]>, relay=cyrus, delay=0.28, delays=0.01/0.04/0/0.23, dsn=2.0.0, status=sent (delivered via cyrus service)
    Apr 21 11:00:27 domaine postfix/smtp[4606]: 022FF230937: to=<[email protected]>, relay=smtp.orange.fr[193.252.22.86]:25, delay=0.31, delays=0.01/0.04/0.18/0.08, dsn=5.0.0, status=bounced (host smtp.orange.fr[193.252.22.86] said: 553 <[email protected]>: *Sender address rejected: Domain not found (in reply to MAIL FROM command))*
    Apr 21 11:00:27 domaine postfix/smtp[4606]: 022FF230937: to=<[email protected]>, relay=smtp.orange.fr[193.252.22.86]:25, delay=0.31, delays=0.01/0.04/0.18/0.08, dsn=5.0.0, status=bounced (host smtp.orange.fr[193.252.22.86] said: 553 <[email protected]>: Sender address rejected: Domain not found (in reply to MAIL FROM command))
    Apr 21 11:00:27 domaine postfix/cleanup[4600]: 602A423094E: message-id=<[email protected]>
    Apr 21 11:00:27 domaine postfix/bounce[4612]: 022FF230937: sender non-delivery notification: 602A423094E
    Apr 21 11:00:27 domaine postfix/qmgr[4582]: 602A423094E: from=, size=3531, nrcpt=1 (queue active)
    Apr 21 11:00:27 domaine postfix/qmgr[4582]: 022FF230937: removed
    Apr 21 11:00:27 domaine postfix/pipe[4608]: 602A423094E: to=<[email protected]>, relay=cyrus, delay=0.06, delays=0.01/0/0/0.05, dsn=2.0.0, status=sent (delivered via cyrus service)
    Apr 21 11:00:27 domaine postfix/qmgr[4582]: 602A423094E: removed
    Apr 21 11:01:10 domaine postfix/postfix-script[4664]: refreshing the Postfix mail system
    Apr 21 11:01:10 domaine postfix/master[2938]: reload configuration /etc/postfix
    Apr 21 11:01:26 domaine postfix/smtpd[4516]: disconnect from domaine.intranet[192.168.1.11]
    Apr 21 11:02:10 domaine postfix/postfix-script[4734]: refreshing the Postfix mail system
    Je cherche des solutions pour corriger les erreurs 553 et 554, espérant que cela nous permettra d'envoyer des mails à l'extérieur.
    Avez-vous d'autres propositions?
    Merci d'avance.

  • Sending mail to invalid mail address but domain valid.im not getting any NDR

    Hi,
    In my organisation I'm sending mail to invalid email address but domain is valid ...i'm not getting any NDR. I want NDR like this
     The e-mail address you entered couldn't be found. Please check the recipient's e-mail address and try to resend the message. If the problem continues, please contact your helpdesk

    Hi,
    Please check whether other users can receive NDR message when sending mails to invalid email address. If the issue happens to all users and all related configurations are proper, please check whether there are any transport rules directly
    deleted the mails that send to an invalid address.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • "NOQUEUE: reject: RCPT from ... : Recipient address rejected" etc error

    I've got the following error in my SL Server 10.6.4 mail server log:
    Sep 4 17:22:06 myservername postfix/smtpd[74713]: connect from asmtpout028.mac.com[17.148.16.103]
    Sep 4 17:22:06 myservername postfix/smtpd[74713]: NOQUEUE: reject: RCPT from asmtpout028.mac.com[17.148.16.103]: 450 4.7.1 <[email protected]>: Recipient address rejected: Service is unavailable; from=<[email protected]> to=<[email protected]> proto=ESMTP helo=<asmtpout028.mac.com>
    Sep 4 17:22:07 myservername postfix/smtpd[74713]: disconnect from asmtpout028.mac.com[17.148.16.103]
    and I get the same result any time my server must deliver to its internal recipients some mail from MobileMe.
    While emails arrive from other mail servers, e.g. gmail, the system accepts averything and delivers it.
    Just to see the log of an incoming mail from gmail:
    Sep 4 17:39:46 myservername postfix/smtpd[74953]: connect from mail-ww0-f47.google.com[74.125.82.47]
    Sep 4 17:39:56 myservername postfix/smtpd[74953]: A2871BA721: client=mail-ww0-f47.google.com[74.125.82.47]
    Sep 4 17:39:56 myservername postfix/smtpd[75004]: connect from mail-ww0-f47.google.com[74.125.82.47]
    Sep 4 17:39:57 myservername postfix/cleanup[74983]: A2871BA721: message-id=<[email protected]>
    Sep 4 17:39:57 myservername postfix/qmgr[59405]: A2871BA721: from=<[email protected]>, size=1897, nrcpt=1 (queue active)
    Sep 4 17:39:57 myservername postfix/smtpd[74986]: connect from localhost[127.0.0.1]
    Sep 4 17:39:57 myservername postfix/smtpd[74986]: C08F4BA728: client=localhost[127.0.0.1]
    Sep 4 17:39:57 myservername postfix/cleanup[74983]: C08F4BA728: message-id=<[email protected]>
    Sep 4 17:39:57 myservername postfix/smtpd[74986]: disconnect from localhost[127.0.0.1]
    Sep 4 17:39:57 myservername postfix/qmgr[59405]: C08F4BA728: from=<[email protected]>, size=2358, nrcpt=1 (queue active)
    Sep 4 17:39:57 myservername postfix/pipe[74989]: C08F4BA728: to=<[email protected]>, relay=dovecot, delay=0.02, delays=0/0/0/0.01, dsn=2.0.0, status=sent (delivered via dovecot service)
    Sep 4 17:39:57 myservername postfix/qmgr[59405]: C08F4BA728: removed
    it delivers the message but I've the suspect that some redundance occurs.
    No problems with outgoing mail.
    This is my postfix configuration:
    myserver:/ root# postconf -n
    biff = no
    command_directory = /usr/sbin
    config_directory = /etc/postfix
    content_filter = smtp-amavis:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    debugpeerlevel = 2
    enableserveroptions = yes
    header_checks = pcre:/etc/postfix/customheaderchecks
    html_directory = /usr/share/doc/postfix/html
    inet_interfaces = all
    localrecipientmaps =
    mail_owner = _postfix
    mailboxsizelimit = 0
    mailbox_transport = dovecot
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    mapsrbldomains =
    messagesizelimit = 31457280
    mydestination = $myhostname, localhost.$mydomain, mail.mydomain.com, www.mydomain.com, $mydomain
    mydomain = mydomain.com
    mydomain_fallback = localhost
    myhostname = myservername.mydomain.com
    mynetworks = 127.0.0.0/8
    newaliases_path = /usr/bin/newaliases
    queue_directory = /private/var/spool/postfix
    readme_directory = /usr/share/doc/postfix
    recipient_delimiter = +
    relayhost =
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = _postdrop
    smtpsasl_passwordmaps =
    smtpdclientrestrictions = permit_mynetworks permitsaslauthenticated permit
    smtpdenforcetls = no
    smtpdhelorequired = yes
    smtpdhelorestrictions = rejectinvalid_helohostname rejectnon_fqdn_helohostname
    smtpdpw_server_securityoptions = cram-md5
    smtpdrecipientrestrictions = permitsaslauthenticated permit_mynetworks rejectunauthdestination checkpolicyservice unix:private/policy permit
    smtpdsasl_authenable = yes
    smtpdtlsCAfile = /etc/certificates/myservername.mydomain.com.longcodehere.chain.pem
    smtpdtls_certfile = /etc/certificates/myservername.mydomain.com.longcodehere.cert.pem
    smtpdtls_excludeciphers = SSLv2, aNULL, ADH, eNULL
    smtpdtls_keyfile = /etc/certificates/myservername.mydomain.com.longcodehere.key.pem
    smtpdtlsloglevel = 0
    smtpduse_pwserver = yes
    smtpdusetls = yes
    tlsrandomsource = dev:/dev/urandom
    unknownlocal_recipient_rejectcode = 550
    virtualaliasmaps =
    what am I forgetting?
    where is the mistake?
    is a conf problem either I've got a MTU black hole as someone has suggested me?
    the MTU of my cisco router seems to be 1464
    any help?

    But from Yahoo, without any more action from me, so clearly after its automatic retry, that's the new result log:
    Sep 4 18:29:25 myservername postfix/smtpd[75776]: connect from n23.bullet.mail.ukl.yahoo.com[87.248.110.140]
    Sep 4 18:29:25 myservername postfix/smtpd[75776]: 73E88BA7F8: client=n23.bullet.mail.ukl.yahoo.com[87.248.110.140]
    Sep 4 18:29:25 myservername postfix/cleanup[75784]: 73E88BA7F8: message-id=<[email protected]>
    Sep 4 18:29:25 myservername postfix/qmgr[59405]: 73E88BA7F8: from=<[email protected]>, size=2744, nrcpt=1 (queue active)
    Sep 4 18:29:25 myservername postfix/smtpd[75776]: disconnect from n23.bullet.mail.ukl.yahoo.com[87.248.110.140]
    Sep 4 18:29:26 myservername postfix/smtpd[75787]: connect from localhost[127.0.0.1]
    Sep 4 18:29:26 myservername postfix/smtpd[75787]: 57E3EBA809: client=localhost[127.0.0.1]
    Sep 4 18:29:26 myservername postfix/cleanup[75784]: 57E3EBA809: message-id=<[email protected]>
    Sep 4 18:29:26 myservername postfix/smtpd[75787]: disconnect from localhost[127.0.0.1]
    Sep 4 18:29:26 myservername postfix/qmgr[59405]: 57E3EBA809: from=<[email protected]>, size=3205, nrcpt=1 (queue active)
    Sep 4 18:29:26 myservername postfix/smtp[75785]: 73E88BA7F8: to=<[email protected]>, relay=127.0.0.1[127.0.0.1]:10024, delay=1, delays=0.36/0.01/0/0.66, dsn=2.0.0, status=sent (250 2.0.0 Ok, id=59259-09, from MTA([127.0.0.1]:10025): 250 2.0.0 Ok: queued as 57E3EBA809)
    Sep 4 18:29:26 newthor postfix/qmgr[59405]: 73E88BA7F8: removed
    Sep 4 18:29:26 newthor postfix/pipe[75790]: 57E3EBA809: to=<[email protected]>, relay=dovecot, delay=0.03, delays=0/0.01/0/0.02, dsn=2.0.0, status=sent (delivered via dovecot service)
    Sep 4 18:29:26 newthor postfix/qmgr[59405]: 57E3EBA809: removed
    Again, someone can explain me such a strange behavior?
    Why at the first try the mail fromyahoo is rejected and at the second try it is accepted and delivered?
    Why mail from mobileme is cut out?
    It's a matter of what?

  • CiscoWorks LMS 3.2 SMTP configuration giving error

    HI Friends,
    I have installed Ciscoworks 3.2 on Dell poweredge 2950 server, when i try to configure SMTP email notification settings, it's giving me error "Invalid IP address or server name please enter valid SMTP server name"
    Request you to all please help me.

    Hi,
    I had the same situation on my LMS 3.2.
    I had to change the SMTP server and got the message, that the IP-address or name of the server is invalid.
    I changed the file, too. But it is not working.
    For testing I created a new discovery job and the system sends a info mail to for such activity.
    I got the following error message:
    MailID is not given by user. Hence, No mail will be sent for this scheduling.
    Maybe somebody can give more advice to this.
    Thanks,
    Sven

  • Group mail not delivered - "Recipient address rejected: Access denied"

    Apparently I'm not alone who is having the issue with mails being rejected while the addresses are fully valid.
    Specifically, I have a mail distribution group created, with several e-mail addresses configured. The group is properly set to accept mails from the outside of the company.
    The emails sent from the company accounts are delivered properly. However, when an email is sent from the outside, it gets "Recipient address rejected: Access denied" error message back. There is no trace of such an email in "message trace".
    What helps (others on the forum as well as me) is switching the Domain type in Mail flow / Accepted domains from Authoritative to Internal relay. The emails start to be delivered.
    The main reason why I do not want to have ths setup is that when an invalid email address is used, the email apparently keeps going in rounds between servers until the maximum number of hops is reached and then the message that is sent back to the sender
    is just that - "554 5.4.6 Too many hops".
    Is there any intention to tackle this problem?

    Hi,
    The first thing that comes to my mind is the 'Require that all senders are authenticated' setting. Is that setting to found your distribution list? If, try uncheck that.
    Best Regards,
    Jesper Vindum, Denmark
    Systems Administrator
    Help the forum: Monitor(alert) your threads and vote helpful replies or mark them as answer, if it helps solving your problem.

Maybe you are looking for

  • Unable to initialize the VISA library

    /usr/local/vxipnp/linux/NIvisa/NIvisaic     -->          Unable to initialize the VISA library. The VISA Interactive Control utility will exit. Running RHEL 5.11 (32-bit) [root@x74943 ~]# rpm -qa|grep nivisa nivisa-4.5.1-f0 [root@x74943 ~]# rpm -qa|g

  • Getting M$ Outlook 2002 into M$ Office for Mac 2008 Entourage

    Need to move all email, contacts, and calendar from M$ Windows platform from M$ Outlook to Mac Snow Leopard platform under M$ Office for Mac 2008 Entourage. BACKGROUND OK, I've made this far. I bought my first MacPro in Aug 2008 and my MacBook Pro in

  • Error message 1603 during phone restoration

    how do i restore my phone if I keep getting error msg 1603 when i try to restore it.

  • New Open Source Broadcom WIFI driver, where to start?

    Hello I want to install new Broadcom Open Source driver brcm80211 for my Broadcom BCM43225 WIFI card but I'm kinda confused where to start. First of all this driver is not available in Arch repositories nor AUR, so I guess there's only GIT way in whi

  • Final Cut 7.0.2 - Auto-Save vs File Save Lockout

    Hi folks I think this is more of a bug in Final Cut than a problem that can be solved but I wanted to know if other people have gotten it so we can try to get Apple to fix it. I was working in one FCP project when I need to create a new one and copy