#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

Similar Messages

  • 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

  • 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

  • Unusual 550 5.7.1 Command Not Allowed being sent from Exchange 2010

    Greetings,
    I have an Exchange 2010 server that seems to be rejecting some emails from external domains with 550 5.7.1 Command Not Allowed. I've taken a look at the SMTP Receive logs (below) and can't seem to find any reason why the emails are getting rejected. The sequence
    immediately prior to the 550 being sent is highlighted in bold.
    #Fields: date-time sequence-number local-endpoint remote-endpoint event data context
    2014-11-05T08:42:27.545Z 0 192.168.3.5:25 212.82.97.117:53913 +  
    2014-11-05T08:42:27.545Z 1 192.168.3.5:25 212.82.97.117:53913 * SMTPSubmit SMTPAcceptAnySender SMTPAcceptAuthoritativeDomainSender AcceptRoutingHeaders Set Session Permissions
    2014-11-05T08:42:27.545Z 2 192.168.3.5:25 212.82.97.117:53913 > 220 SERVER.domain.com Microsoft ESMTP MAIL Service ready at Wed, 5 Nov 2014 03:42:27 -0500 
    2014-11-05T08:42:27.657Z 3 192.168.3.5:25 212.82.97.117:53913 < EHLO nm34-vm3.bullet.mail.ir2.yahoo.com 
    2014-11-05T08:42:27.658Z 4 192.168.3.5:25 212.82.97.117:53913 > 250-SERVER.domain.com Hello [212.82.97.117] 
    2014-11-05T08:42:27.658Z 5 192.168.3.5:25 212.82.97.117:53913 > 250-SIZE 
    2014-11-05T08:42:27.658Z 6 192.168.3.5:25 212.82.97.117:53913 > 250-PIPELINING 
    2014-11-05T08:42:27.658Z 7 192.168.3.5:25 212.82.97.117:53913 > 250-DSN 
    2014-11-05T08:42:27.658Z 8 192.168.3.5:25 212.82.97.117:53913 > 250-ENHANCEDSTATUSCODES 
    2014-11-05T08:42:27.658Z 9 192.168.3.5:25 212.82.97.117:53913 > 250-STARTTLS 
    2014-11-05T08:42:27.658Z 10 192.168.3.5:25 212.82.97.117:53913 > 250-X-ANONYMOUSTLS 
    2014-11-05T08:42:27.658Z 11 192.168.3.5:25 212.82.97.117:53913 > 250-AUTH NTLM 
    2014-11-05T08:42:27.658Z 12 192.168.3.5:25 212.82.97.117:53913 > 250-X-EXPS GSSAPI NTLM 
    2014-11-05T08:42:27.658Z 13 192.168.3.5:25 212.82.97.117:53913 > 250-8BITMIME 
    2014-11-05T08:42:27.658Z 14 192.168.3.5:25 212.82.97.117:53913 > 250-BINARYMIME 
    2014-11-05T08:42:27.658Z 15 192.168.3.5:25 212.82.97.117:53913 > 250-CHUNKING 
    2014-11-05T08:42:27.658Z 16 192.168.3.5:25 212.82.97.117:53913 > 250-XEXCH50 
    2014-11-05T08:42:27.658Z 17 192.168.3.5:25 212.82.97.117:53913 > 250-XRDST 
    2014-11-05T08:42:27.658Z 18 192.168.3.5:25 212.82.97.117:53913 > 250 XSHADOW 
    2014-11-05T08:42:27.756Z 19 192.168.3.5:25 212.82.97.117:53913 < STARTTLS 
    2014-11-05T08:42:27.756Z 20 192.168.3.5:25 212.82.97.117:53913 > 220 2.0.0 SMTP server ready 
    2014-11-05T08:42:27.756Z 21 192.168.3.5:25 212.82.97.117:53913 *  Sending certificate
    2014-11-05T08:42:27.756Z 22 192.168.3.5:25 212.82.97.117:53913 * CN=SERVER Certificate subject
    2014-11-05T08:42:27.756Z 23 192.168.3.5:25 212.82.97.117:53913 * CN=SERVER Certificate issuer name
    2014-11-05T08:42:27.756Z 24 192.168.3.5:25 212.82.97.117:53913 * 3BF7DF215EB42FB14FAE1BF7E4369E06 Certificate serial number
    2014-11-05T08:42:27.756Z 25 192.168.3.5:25 212.82.97.117:53913 * 01494AD746353CCE0F198CE83AD4D6A8592C29F5 Certificate thumbprint
    2014-11-05T08:42:27.756Z 26 192.168.3.5:25 212.82.97.117:53913 * SERVER;SERVER.domain.com Certificate alternate names
    2014-11-05T08:42:28.059Z 27 192.168.3.5:25 212.82.97.117:53913 < EHLO nm34-vm3.bullet.mail.ir2.yahoo.com 
    2014-11-05T08:42:28.059Z 28 192.168.3.5:25 212.82.97.117:53913 *  TlsDomainCapabilities='None'; Status='NoRemoteCertificate'
    2014-11-05T08:42:28.060Z 29 192.168.3.5:25 212.82.97.117:53913 > 250-SERVER.domain.com Hello [212.82.97.117] 
    2014-11-05T08:42:28.060Z 30 192.168.3.5:25 212.82.97.117:53913 > 250-SIZE 
    2014-11-05T08:42:28.060Z 31 192.168.3.5:25 212.82.97.117:53913 > 250-PIPELINING 
    2014-11-05T08:42:28.060Z 32 192.168.3.5:25 212.82.97.117:53913 > 250-DSN 
    2014-11-05T08:42:28.060Z 33 192.168.3.5:25 212.82.97.117:53913 > 250-ENHANCEDSTATUSCODES 
    2014-11-05T08:42:28.060Z 34 192.168.3.5:25 212.82.97.117:53913 > 250-AUTH NTLM LOGIN 
    2014-11-05T08:42:28.060Z 35 192.168.3.5:25 212.82.97.117:53913 > 250-X-EXPS GSSAPI NTLM 
    2014-11-05T08:42:28.060Z 36 192.168.3.5:25 212.82.97.117:53913 > 250-8BITMIME 
    2014-11-05T08:42:28.060Z 37 192.168.3.5:25 212.82.97.117:53913 > 250-BINARYMIME 
    2014-11-05T08:42:28.060Z 38 192.168.3.5:25 212.82.97.117:53913 > 250-CHUNKING 
    2014-11-05T08:42:28.060Z 39 192.168.3.5:25 212.82.97.117:53913 > 250-XEXCH50 
    2014-11-05T08:42:28.060Z 40 192.168.3.5:25 212.82.97.117:53913 > 250-XRDST 
    2014-11-05T08:42:28.060Z 41 192.168.3.5:25 212.82.97.117:53913 > 250 XSHADOW 
    2014-11-05T08:42:28.158Z 42 192.168.3.5:25 212.82.97.117:53913 < MAIL FROM:<[email protected]
    2014-11-05T08:42:28.158Z 43 192.168.3.5:25 212.82.97.117:53913 * 08D11121D08C9A95;2014-11-05T08:42:27.545Z;1 receiving message
    2014-11-05T08:42:28.159Z 44 192.168.3.5:25 212.82.97.117:53913 > 250 2.1.0 Sender OK 
    2014-11-05T08:42:28.364Z 45 192.168.3.5:25 212.82.97.117:53913 < RCPT TO:<[email protected]
    2014-11-05T08:42:28.364Z 46 192.168.3.5:25 212.82.97.117:53913 > 250 2.1.5 Recipient OK 
    2014-11-05T08:42:28.462Z 47 192.168.3.5:25 212.82.97.117:53913 < DATA 
    2014-11-05T08:42:29.275Z 48 192.168.3.5:25 212.82.97.117:53913 * Tarpit for '0.00:00:05' 
    2014-11-05T08:42:34.278Z 49 192.168.3.5:25 212.82.97.117:53913 > 550 5.7.1 Command not allowed 
    2014-11-05T08:42:34.521Z 50 192.168.3.5:25 212.82.97.117:53913 < RSET 
    2014-11-05T08:42:34.521Z 51 192.168.3.5:25 212.82.97.117:53913 * Tarpit for '0.00:00:05' 
    2014-11-05T08:42:39.523Z 52 192.168.3.5:25 212.82.97.117:53913 > 250 2.0.0 Resetting 
    2014-11-05T08:42:39.621Z 53 192.168.3.5:25 212.82.97.117:53913 < MAIL FROM:<[email protected]
    2014-11-05T08:42:39.621Z 54 192.168.3.5:25 212.82.97.117:53913 * 08D11121D08C9A95;2014-11-05T08:42:27.545Z;2 receiving message
    2014-11-05T08:42:39.621Z 55 192.168.3.5:25 212.82.97.117:53913 > 250 2.1.0 Sender OK 
    2014-11-05T08:42:39.719Z 56 192.168.3.5:25 212.82.97.117:53913 < RCPT TO:<[email protected]
    2014-11-05T08:42:39.719Z 57 192.168.3.5:25 212.82.97.117:53913 > 250 2.1.5 Recipient OK 
    2014-11-05T08:42:39.817Z 58 192.168.3.5:25 212.82.97.117:53913 < DATA 
    2014-11-05T08:42:39.838Z 59 192.168.3.5:25 212.82.97.117:53913 * Tarpit for '0.00:00:05' 
    2014-11-05T08:42:44.837Z 60 192.168.3.5:25 212.82.97.117:53913 > 550 5.7.1 Command not allowed 
    2014-11-05T08:42:45.078Z 61 192.168.3.5:25 212.82.97.117:53913 < RSET 
    2014-11-05T08:42:45.078Z 62 192.168.3.5:25 212.82.97.117:53913 * Tarpit for '0.00:00:05' 
    2014-11-05T08:42:50.079Z 63 192.168.3.5:25 212.82.97.117:53913 > 250 2.0.0 Resetting 
    2014-11-05T08:42:50.177Z 64 192.168.3.5:25 212.82.97.117:53913 < QUIT 
    2014-11-05T08:42:50.177Z 65 192.168.3.5:25 212.82.97.117:53913 > 221 2.0.0 Service closing transmission channel 
    2014-11-05T08:42:50.177Z 66 192.168.3.5:25 212.82.97.117:53913 -  Local
    I have another entry in my logs fro the same sender coming from the same IP which yields the same results. Strangely enough, there are other entries from the same sender coming from different IPs which are delivered just fine. 
    The sender has stated that they only get the rejects when replying to emails from my domain, not when he sends fresh emails.
    Why would Exchange send the 550 5.7.1 in response to a DATA command when it responds with 354 Start mail input; end with <CRLF>.<CRLF> to other DATA commands from a different server?
    Bit of an odd problem, any help would be greatly appreciated.
    Thanks,
    B. Colt

    Thanks for the input Mr. Crowley. I've dumped the Receive Connector configurations, everything seems to be at default values except for logging (I set it to verbose). 
    RunspaceId                              : 17f0dc01-c2a9-45ce-812d-5d47688b6650
    AuthMechanism                           : Tls, BasicAuth, BasicAuthRequireTLS
    Banner                                  : 
    BinaryMimeEnabled                       : True
    Bindings                                : {12.34.56.78:25}
    ChunkingEnabled                         : True
    DefaultDomain                           : 
    DeliveryStatusNotificationEnabled       : True
    EightBitMimeEnabled                     : True
    BareLinefeedRejectionEnabled            : False
    DomainSecureEnabled                     : False
    EnhancedStatusCodesEnabled              : True
    LongAddressesEnabled                    : False
    OrarEnabled                             : False
    SuppressXAnonymousTls                   : False
    AdvertiseClientSettings                 : False
    Fqdn                                    : mail.MYDOMAIN.com
    Comment                                 : 
    Enabled                                 : True
    ConnectionTimeout                       : 00:10:00
    ConnectionInactivityTimeout             : 00:05:00
    MessageRateLimit                        : unlimited
    MessageRateSource                       : IPAddress
    MaxInboundConnection                    : 5000
    MaxInboundConnectionPerSource           : 20
    MaxInboundConnectionPercentagePerSource : 2
    MaxHeaderSize                           : 64 KB (65,536 bytes)
    MaxHopCount                             : 60
    MaxLocalHopCount                        : 12
    MaxLogonFailures                        : 3
    MaxMessageSize                          : 100 MB (104,857,600 bytes)
    MaxProtocolErrors                       : 5
    MaxRecipientsPerMessage                 : 200
    PermissionGroups                        : ExchangeUsers, ExchangeServers
    PipeliningEnabled                       : True
    ProtocolLoggingLevel                    : Verbose
    RemoteIPRanges                          : {0.0.0.0-255.255.255.255}
    RequireEHLODomain                       : False
    RequireTLS                              : False
    EnableAuthGSSAPI                        : False
    ExtendedProtectionPolicy                : None
    LiveCredentialEnabled                   : False
    TlsDomainCapabilities                   : {}
    Server                                  : MYSERVER
    SizeEnabled                             : Enabled
    TarpitInterval                          : 00:00:05
    MaxAcknowledgementDelay                 : 00:00:30
    AdminDisplayName                        : 
    ExchangeVersion                         : 0.1 (8.0.535.0)
    Name                                    : default MYDOMAIN.com
    DistinguishedName                       : CN=default MYDOMAIN.COM,CN=SMTP Receive Connectors,CN=Protocols,CN=MYSERVER,CN=Servers,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=My
    Company,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=DOMAIN
                                              ,DC=local
    Identity                                : SERVER\default MYDOMAIN.COM
    Guid                                    : 04d418d8-06f6-4e13-8f3b-439f9c6509b0
    ObjectCategory                          : MYDOMAIN.COM/Configuration/Schema/ms-Exch-Smtp-Receive-Connector
    ObjectClass                             : {top, msExchSmtpReceiveConnector}
    WhenChanged                             : 10/1/2014 3:53:53 PM
    WhenCreated                             : 3/1/2012 2:33:10 PM
    WhenChangedUTC                          : 10/1/2014 7:53:53 PM
    WhenCreatedUTC                          : 3/1/2012 7:33:10 PM
    OrganizationId                          : 
    OriginatingServer                       : SERVER.MYDOMAIN.COM
    IsValid                                 : True
    RunspaceId                              : 17f0dc01-c2a9-45ce-812d-5d47688b6650
    AuthMechanism                           : Tls, Integrated, BasicAuth, BasicAuthRequireTLS, ExchangeServer
    Banner                                  : 
    BinaryMimeEnabled                       : True
    Bindings                                : {:::25, 0.0.0.0:25}
    ChunkingEnabled                         : True
    DefaultDomain                           : 
    DeliveryStatusNotificationEnabled       : True
    EightBitMimeEnabled                     : True
    BareLinefeedRejectionEnabled            : False
    DomainSecureEnabled                     : False
    EnhancedStatusCodesEnabled              : True
    LongAddressesEnabled                    : False
    OrarEnabled                             : False
    SuppressXAnonymousTls                   : False
    AdvertiseClientSettings                 : False
    Fqdn                                    : SERVER.MYDOMAIN.COM
    Comment                                 : 
    Enabled                                 : True
    ConnectionTimeout                       : 00:10:00
    ConnectionInactivityTimeout             : 00:05:00
    MessageRateLimit                        : unlimited
    MessageRateSource                       : IPAddress
    MaxInboundConnection                    : 5000
    MaxInboundConnectionPerSource           : unlimited
    MaxInboundConnectionPercentagePerSource : 100
    MaxHeaderSize                           : 64 KB (65,536 bytes)
    MaxHopCount                             : 60
    MaxLocalHopCount                        : 12
    MaxLogonFailures                        : 3
    MaxMessageSize                          : 100 MB (104,857,600 bytes)
    MaxProtocolErrors                       : 5
    MaxRecipientsPerMessage                 : 5000
    PermissionGroups                        : AnonymousUsers, ExchangeUsers, ExchangeServers, ExchangeLegacyServers
    PipeliningEnabled                       : True
    ProtocolLoggingLevel                    : Verbose
    RemoteIPRanges                          : {192.168.1.0(255.255.255.0), ::-ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff, 0.0.0.0-255.255.255.255}
    RequireEHLODomain                       : False
    RequireTLS                              : False
    EnableAuthGSSAPI                        : False
    ExtendedProtectionPolicy                : None
    LiveCredentialEnabled                   : False
    TlsDomainCapabilities                   : {}
    Server                                  : MYSERVER
    SizeEnabled                             : EnabledWithoutValue
    TarpitInterval                          : 00:00:05
    MaxAcknowledgementDelay                 : 00:00:30
    AdminDisplayName                        : 
    ExchangeVersion                         : 0.1 (8.0.535.0)
    Name                                    : Default SERVER
    DistinguishedName                       : CN=Default SERVER,CN=SMTP Receive Connectors,CN=Protocols,CN=SERVER,CN=Servers,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=MY
    COMPANY,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=MYDOMAIN,DC=l
                                              ocal
    Identity                                : SERVER\Default SERVER
    Guid                                    : fc6ab381-1cf9-4edb-bec4-3a2c092cd4e3
    ObjectCategory                          : mydomain/Configuration/Schema/ms-Exch-Smtp-Receive-Connector
    ObjectClass                             : {top, msExchSmtpReceiveConnector}
    WhenChanged                             : 10/1/2014 3:56:23 PM
    WhenCreated                             : 2/6/2012 11:51:58 AM
    WhenChangedUTC                          : 10/1/2014 7:56:23 PM
    WhenCreatedUTC                          : 2/6/2012 4:51:58 PM
    OrganizationId                          : 
    OriginatingServer                       : SERVER.mydomain.com
    IsValid                                 : True
    I really don't want to turn off the tarpitting and expose myself to tons of spam, although I do have anti-spam filters running. 
    Any thoughts?
    Thanks again,
    B. Colt
    Brian Colt

  • #550 5.2.0 STOREDRV.Deliver: The Microsoft Exchange Information Store service reported an error.

    Hi, 
    I created a mailbox few days before, everythign was working fine and suddenly when some one tried to send email on that mailbox it bounced back with following error:
    There's a problem with the recipient's mailbox. Microsoft Exchange will not try to redeliver this message for you. Please try resending this message, or provide the following diagnostic text to your system administrator.
    Sent by Microsoft Exchange Server 2007 
    Diagnostic information for administrators:
    Generating server: Mail01.abc.com
    [email protected]
    #550 5.2.0 STOREDRV.Deliver: The Microsoft Exchange Information Store service reported an error. The following information should help identify the cause of this error: "MapiExceptionNotFound:16.18969:9A000000, 17.27161:00000000CC000000000000000600000000000000,
    255.23226:00000000, 255.27962:FE000000, 255.17082:0F010480, 0.26937:94000000, 4.21921:0F010480, 255.27962:FA000000, 255.1494:00000000, 255.26426:FE000000, 4.7588:0F010480, 4.6564:0F010480, 2.17597:00000000, 2.25805:00000000, 4.8936:0F010480, 4.14312:0F010480,
    4.2199:0F010480, 2.25805:00000000, 4.8936:0F010480, 2.22957:00000000, 2.19693:00000000, 2.17917:00000000, 2.27341:00000000, 4.8936:0F010480, 4.17097:0F010480, 4.8620:0F010480, 255.1750:0F010480, 0.26849:0F010480, 255.21817:0F010480, 0.26297:0F010480, 4.16585:0F010480,
    0.32441:0F010480, 4.1706:0F010480, 0.24761:0F010480, 4.20665:0F010480, 0.25785:EC030000, 4.29881:0F010480". ##
    Original message headers:
    Received: from Mailbox.abc.com ([fe80::892d:93d6:b1ac:b70a]) by mail01
     ([10.72.0.95]) with mapi; Fri, 11 Jan 2013 14:04:55 +0500
    Content-Type: application/ms-tnef; name="winmail.dat"
    Content-Transfer-Encoding: binary
    From: Anwar Amjad <[email protected]>
    To: All-HEC <[email protected]>
    Date: Fri, 11 Jan 2013 14:04:53 +0500
    Subject: FW: Suggestions & New Arrival in HEC Library
    Thread-Topic: Suggestions & New Arrival in HEC Library
    Thread-Index: Ac3vHgwR50OLs2BnQuOzo9jWg4e1gQAvJtUw
    Message-ID: <[email protected]>
    References: <[email protected]>
    In-Reply-To: <[email protected]>
    Accept-Language: en-US
    Content-Language: en-US
    X-MS-Has-Attach: yes
    X-MS-TNEF-Correlator: <[email protected]>
    MIME-Version: 1.0
    X-Auto-Response-Suppress: DR, OOF, AutoReply
    After this error, i treid to send email again and there is no error and email was delivered. What was the cause of this error?
    Hasan

    Hi,
    I tried to start seeding again but it is at same status. I will try again and hopefully it will get resolved.
    But, yesterday i ran in to the most complex issue i have ever seen with Exchange.
    There was a unexpected power cut at our datacentre due to which both the nodes went down.
    After that both the nodes came up. But the all 3 databases were dismounted.
    Therefore, i ran Eseutil /mh resulting dirty shutdown.
    I was able to repair 2 databases.
    But the 3rd one was not mounting with below error.
    Microsoft Exchange Error
    Failed to mount database 'Mailbox Database'.
    Mailbox Database
    Failed
    Error:
    Exchange is unable to mount the database that you specified. Specified database: XXXXX\First Storage Group\Mailbox Database; Error code: MapiExceptionJetErrorAttachedDatabaseMismatch: Unable to mount database. (hr=0x80004005, ec=-1216).
    I was able to mount database somehow. There are 7 User mailboxes (Tier 1) on this database.
    All emails sent to the users in this database are bouncing back with the below error.
    This storage groups holds the mailboxes of my Senior Managements. And their mailboxes are down for almost 20 Hrs. I am spinning my head since yesterday but not able to find any fix. Can you please guide me in this concern.
    Best Regards
    K2
    Kapil Kashyap

  • 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!!

  • 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

  • Invalid recipient list

    Hi,
    I'm new to Advanced Queueing and i did everything by the book.
    i created a queue table, queue, started the queue and i enqueued a message via PL/SQL stored procedures.
    now i want to listen to my queue via an a java class. I got this from an oracle documentation..
    aq_sess = AQDriverManager.createAQSession(db_conn);
    agt_list = new AQAgent[3];
    agt_list[0] = new AQAgent(null, "aqadmin.ches_q",0);
    ret_agt = aq_sess.listen(agt_list, 120);
    but i always get a JMS-145 Invalid recipient list exception
    i've already specified a recipient list on my message properties when i enqueued my message. i even specified the right subscribers.
    what am i doing wrong?? please help!
    Thanks
    Chesca

    no need to help me, i already got it.

  • "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.

  • Exchange not sending mail to the correct recipient addresses when one of the addresses is incorrect

    Hi,
    I am creating an email msg programatically and sending to the exchange server.
    When all the recipient addresses are correct, the mail is sent successfully.
    But if one of the addresses is incorrect, the server gives a "550 5.1.1 User unknown" error and theemail msg is not being sent to the correct addresses as well.
    When this is tested via Outlook, the mail is sent to the correct addresses and there is an error mail from the server stating that the mail was not sent to the incorrect address, this is the expected behaviour.
    What needs to be done to get the expected behaviour? There must be some alternative setting being used by outlook.

    Hi,
    What you describe can happen if the AntiSpam Agents has been installed
    and Recipient Filter Agent is enabled on Mailbox Servers.
    Recipient Filter agent
    Although the Recipient Filter agent is available on Mailbox servers, you shouldn't configure it. When recipient filtering on a Mailbox server detects one invalid or blocked recipient in a message that contains other valid recipients, the message is rejected.
    From:
    http://technet.microsoft.com/en-us/library/jj218660(v=exchg.150).aspx#Mailbox
    Martina Miskovic

  • Recipient verification on Exchange 2013 SP1

    Hello,
    we use 3rd party tool for antispam and I'm unable to configure recipient verification on Exchange 2013 with SP1.
    Basically i have done all steps described in article http://technet.microsoft.com/en-us/library/bb125187.aspx and still i am able to send mail to non existent users (Exchange sends NDR)
    My recipient filter config looks like this:
    RunspaceId                 : a4ec4d9b-a68d-43e2-beb9-c397505d1321
    Name                       : RecipientFilterConfig
    BlockedRecipients          : {}
    RecipientValidationEnabled : True
    BlockListEnabled           : True
    Enabled                    : True
    ExternalMailEnabled        : True
    InternalMailEnabled        : True
    AdminDisplayName           :
    ExchangeVersion            : 0.1 (8.0.535.0)
    DistinguishedName          : CN=RecipientFilterConfig,CN=Message Hygiene,CN=Transport
                                 Settings,CN=secureemail,CN=Microsoft
                                 Exchange,CN=Services,CN=Configuration,DC=domain,DC=priv
    Identity                   : RecipientFilterConfig
    Guid                       : d34e78fa-bc92-44db-80bb-85e300135422
    ObjectCategory             : domain.priv/Configuration/Schema/ms-Exch-Message-Hygiene-Recipient-Filter-Config
    ObjectClass                : {top, msExchAgent, msExchMessageHygieneRecipientFilterConfig}
    WhenChanged                : 30/04/2014 10:29:43 AM
    WhenCreated                : 01/10/2011 12:34:08 PM
    WhenChangedUTC             : 30/04/2014 2:29:43 PM
    WhenCreatedUTC             : 01/10/2011 4:34:08 PM
    OrganizationId             :
    OriginatingServer          : server01.domain.priv
    IsValid                    : True
    ObjectState                : Unchanged
    I have allowed anonymous connection on default connector.
    Also, transport agent is enabled.
    My problem is that mail gets in queue even i don't wanna this to happen.
    Any advice is more then welcome.
    Thanks,
    Ivica

    Hello,
    well, we don't use Edge transport, we use 3rd party tool.
    here is link from them:
    http://helpdesk.spamtitan.com/support/articles/95349-recipient
    important part:
    "Once Recipient Filtering is enabled log on to the SpamTitan web interface. Browse to System Setup->Mail Relay->Domains.  Edit a domain and select "Dynamic Verification" and enter your mail server IP as the Verification Server.
    This will allow SpamTitan to verify the recipient addresses of all incoming mail. 
    Any mail addresses to invalid addresses will be dropped.  This will aid the spam block rate and keep your daily license usage count accurate."
    But here is not issue with Spamtitan, it is with Exchange itself because i try to make it work via telnet session. 
    I'm using scripts:
    Set-RecipientFilterConfig -Enabled $trueSet-RecipientFilterConfig -BlockListEnabled $trueSet-RecipientFilterConfig -RecipientValidationEnabled $true

  • Mail error 5.1.0 - Unknown address error 554-'5.7.1 user@rjh.school.nz : Recipient address rejected: Access denied'

    Cannot receive mail in.  Can send mail out.
    Result of postconf -n
    alias_maps = hash:/etc/aliases,hash:/var/mailman/data/aliases
    biff = no
    command_directory = /usr/sbin
    config_directory = /etc/postfix
    content_filter = smtp-amavis:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    debug_peer_level = 2
    enable_server_options = yes
    header_checks = pcre:/etc/postfix/custom_header_checks
    html_directory = /usr/share/doc/postfix/html
    inet_interfaces = all
    mail_owner = _postfix
    mailbox_size_limit = 0
    mailbox_transport = dovecot
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    message_size_limit = 83886080
    mydestination = $myhostname, localhost.$mydomain, localhost, rutherfordint.co.nz, rjh.school.nz, hpcfootball.info
    mydomain = rjh.school.nz
    mydomain_fallback = localhost
    myhostname = mail.rjh.school.nz
    mynetworks = 127.0.0.0/8,rjh.school.nz,rutherfordint.co.nz
    newaliases_path = /usr/bin/newaliases
    owner_request_special = no
    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
    smtp_sasl_auth_enable = no
    smtp_sasl_password_maps =
    smtpd_client_restrictions = hash:/etc/postfix/smtpdreject cidr:/etc/postfix/smtpdreject.cidr permit_mynetworks permit_sasl_authenticated permit
    smtpd_enforce_tls = no
    smtpd_helo_required = yes
    smtpd_helo_restrictions = reject_invalid_helo_hostname reject_non_fqdn_helo_hostname
    smtpd_pw_server_security_options = cram-md5,login
    smtpd_recipient_restrictions = permit_sasl_authenticated permit_mynetworks  reject_unauth_destination check_policy_service unix:private/policy reject
    smtpd_sasl_auth_enable = yes
    smtpd_tls_CAfile = /etc/certificates/server.rutherfordint.co.nz.C3479A3DA932D042025B19ACAEA2F77EE5 C1AF86.chain.pem
    smtpd_tls_cert_file =
    smtpd_tls_exclude_ciphers = SSLv2, aNULL, ADH, eNULL
    smtpd_tls_key_file =
    smtpd_tls_loglevel = 0
    smtpd_use_pw_server = yes
    smtpd_use_tls = no
    tls_random_source = dev:/dev/urandom
    unknown_local_recipient_reject_code = 550
    virtual_alias_domains = $virtual_alias_maps hash:/etc/postfix/virtual_domains
    virtual_alias_maps = hash:/etc/postfix/virtual_users

    I'm getting the same errors and well having issues with virtual domains, even after I add user e-mails in INFO tab in workgroup manager.  
    : Recipient address rejected: User unknown in virtual alias table [RCPT_TO]

  • 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

  • 550 5.7.1 NDR's as mail volume from IIS Virtual SMTP server to Exchange 2010 increases

    We have a virtual win 2008 server that has a Virtual SMTP server running via IIS. A separate application on this server drops emails in the pickup directory to forward to our Exchange 2010 environment and this works fine. The odd issue is that as the volume
    of messages being dropped in the pickup directory increases to over around 500 per minute we see a huge increase of bounced emails ending up in badmail directory on this server. The NDR we receive from our exchange environment states the following
    550 5.7.1 Anonymous clients does not have permissions to send as this sender
    As soon as we throttle this application the issue stops. And the same emails that bounced can be resubmitted with no issues
    This particular virtual SMTP instance sends to only a handful of mailboxes in our organization, but it does send a lot of messages
    We currently have a receive connector for all internal relay servers, and this server is called out in the accepted IP range and the message rate is sent to unlimited. Here are the edited version of the details of one of the internal relay receive connectors
    on one of our hub transport servers. Is there something we have setup on the these connectors that might be causing this?
    RunspaceId                             
    : 1e06e317-da65-4916-9b2c-e1253b4b550b
    AuthMechanism                           : None
    Banner                                  :
    BinaryMimeEnabled                      
    : True
    Bindings              
                     : {0.0.0.0:25}
    ChunkingEnabled                     
       : True
    DefaultDomain                          
    DeliveryStatusNotificationEnabled      
    : True
    EightBitMimeEnabled                    
    : True
    BareLinefeedRejectionEnabled           
    : False
    DomainSecureEnabled                    
    : False
    EnhancedStatusCodesEnabled             
    : True
    LongAddressesEnabled                   
    : False
    OrarEnabled                        
        : False
    SuppressXAnonymousTls                   : False
    AdvertiseClientSettings                
    : False
    Fqdn                   
                    : HT02.corp.com
    Comment                                 :
    Enabled                                 : True
    ConnectionTimeout                       : 00:10:00
    ConnectionInactivityTimeout            
    : 00:05:00
    MessageRateLimit                        : unlimited
    MessageRateSource                       : IPAddress
    MaxInboundConnection                   
    : 5000
    MaxInboundConnectionPerSource          
    : 100
    MaxInboundConnectionPercentagePerSource : 100
    MaxHeaderSize                 
             : 64 KB (65,536 bytes)
    MaxHopCount                             : 60
    MaxLocalHopCount                       
    : 8
    MaxLogonFailures                        : 3
    MaxMessageSize                    
         : 30 MB (31,457,280 bytes)
    MaxProtocolErrors           
               : 5
    MaxRecipientsPerMessage                
    : 200
    PermissionGroups                        : AnonymousUsers
    PipeliningEnabled                      
    : True
    ProtocolLoggingLevel                   
    : Verbose
    RemoteIPRanges                          : REDACTED
    RequireEHLODomain                      
    : False
    RequireTLS                              : False
    EnableAuthGSSAPI                
           : False
    ExtendedProtectionPolicy               
    : None
    LiveCredentialEnabled                  
    : False
    TlsDomainCapabilities                  
    Server                                  : HT02
    SizeEnabled                     
           : EnabledWithoutValue
    TarpitInterval                          : 00:00:05
    MaxAcknowledgementDelay                
    : 00:00:30
    AdminDisplayName             
    ExchangeVersion          
                  : 0.1 (8.0.535.0)
    Name                    
                   : Internal Relay
    DistinguishedName                       : REDACTED
    Identity                     
              : HT02\Internal Relay
    Guid                                   
    : a1f5af2e-6d53-4cb9-80b6-d19aab6879b4
    ObjectCategory                 
            : REDACTED
    ObjectClass                             : {top,msExchSmtpReceiveConnector}
    WhenChanged                    
            : 6/20/2014 11:12:17 AM
    WhenCreated                    
            : 2/18/2011 10:15:58 AM
    WhenChangedUTC                  
           : 6/20/2014 3:12:17 PM
    WhenCreatedUTC                
             : 2/18/2011 3:15:58 PM
    OrganizationId                         
    OriginatingServer                       : dc04.corp.com
    IsValid                                
    : True

    Just to clarify, this is not a pickup directory on an Exchange server but on a Windows 2008 server running an SMTP Virtual server in IIS 6.0. The problem happens only when the message volume from this server to Exchange increases to over ~500 messages a
    minute. When that happens the messages get bounced from Exchange with the following info in the NDR
    550 5.7.1 Anonymous clients does not have permissions to send as this sender
    If we resubmit all the bounce messages at a lower volume per minute we do not see the issue. I'm still working on replicating the issue now that we have logging turned up on the receive connectors.
    In addition some messages are being bounced with the following NDR message
    554 5.6.0 Invalid message content
    These messages are always between 65-70KB and have around 200 recipients
    In the Exchange receive logs for the receive connector for these messages we see the following message (with different sizing)
    A parsing error has occurred:MIME content error:
    Singletext value size
    (32781)exceeded allowed maximum
    (32768).
    The messages dropped in this pick-up  directory can be anywhere from 1KB to 10MB, so it's not that it's viewing each batch as a single email but something different with this particular email. I've tried searching for where to increase this MIME value
    but can't find out where it is stored in Exchange.

Maybe you are looking for

  • My iphone wont let me send imessages it keeps saying my password is wrong but ive reset it twice

    my iphone wont let me send imessages it keeps saying my password is wrong but ive reset it twice

  • Ram and Memory

    Hi I was wondering if I upgrade my memory do I need to upgrade the ram too? For example if I upgrade my memory from 80 to 100 GB do I have to upgrade my ram from 1 to 2 gb's? Will there be an repercussions? Thanks

  • Drill through report with parameters that user can change

    Hi Team, Need to provide user the ability to select the parameters in drill through report. But even after changing parameters to different values and click view reports.Its getting reset to the parameter that being passed from main report. Is there

  • Cost Center Hierarchy in ABAP program

    Hi All, We are writing a custom program to extract the cost center master data from SAP. There is a requirement to extract the cost center group that is linked to the cost center as well. But the extracted group should only be the one attached to it

  • HotSpot  VM error

    HotSpot Virtual Machine Error, Internal Error # Please report this error at # Error ID: 53414645504F494E540E435050036C # Problematic Thread: prio=5 tid=0x6a4f80 nid=0xfff619dd runnable #