Invoice Recipient Address

Hi Guys,
I am working on SRM 4.0 classic. I have defined attribute
ADDR_BILLT Invoice Recipient Address in PPOMA_BBP and put some
value. ( Address to which invoicing party sends the address.)
The invoce receipient address is already maintained using edit
internal address tx.
I would like to know where exactly this address will get populated
in follow on documents eg PO or IV.
I have not seen this functionality in classic  PO , but is this available in ECS/local POs.
Regards
Abhijeet

Hi,
This address will be populated on to PO so that Vendor will send the IV on that address.
Pls reward points for useful replies.
Brdgs/Gopesh

Similar Messages

  • Invoice Recipient transfer to ERP in classic scenario

    Hi experts,
    In classic scenario, ADDR_BILLT invoice recipient/address not in SC and PO although customized in corresponding PPOMA_BBP attribute.
    Is the functionality of transferring partner function 28 available in classic PO? If not, is there any way to transfer this data to backend?
    Partnerfunction 28 Invoice Recipient is part of the standard table BBPV_PARTNERFUNC but why is it not used during creation of the shopping cart on ebp side? Why this partnerfunction is customized by SAP but not detected during creation of the SC?
    Any insight into this is most welcome.
    Thanks,
    Vidya

    Hi  Vidya,
    Invoice recipient data will be populated only when you do invoice in SAP SRM not for shopping cart.
    SAP designed in that manner.
    In Edit internal address you can see Invoice recipient can be flaged .
    br
    muthu

  • 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

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

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

  • When I try to send an email I get a message - Non ASCII characters in the local part of the recipient address.

    I am trying to send an emails to Italy. When I click send I get a message ( Non-ASCII characters in the local part of the recipient address). [email protected]  is one of the email address I am trying to send to. My other email address' work OK. I have sent emails to these Italian address before with no problem.

    Restart the operating system in '''[http://en.wikipedia.org/wiki/Safe_mode safe mode with Networking]'''. This loads only the very basics needed to start your computer while enabling an Internet connection. Click on your operating system for instructions on how to start in safe mode: [http://windows.microsoft.com/en-us/windows-8/windows-startup-settings-including-safe-mode Windows 8], [http://windows.microsoft.com/en-us/windows/start-computer-safe-mode#start-computer-safe-mode=windows-7 Windows 7], [http://windows.microsoft.com/en-us/windows/start-computer-safe-mode#start-computer-safe-mode=windows-vista Windows Vista], [http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/boot_failsafe.mspx?mfr=true" Windows XP], [http://support.apple.com/kb/ht1564 OSX]
    ; If safe mode for the operating system fixes the issue, there's other software in your computer that's causing problems. Possibilities include but not limited to: AV scanning, virus/malware, background downloads such as program updates.

  • Extended Notifications - Recipient Address

    Hi,
    I am creating a subscription in SWNCONFIG (Extended Nofications) that should go to a particular e-mail address. When I set an e-mail adress with INT Internet Mail nothing is sent via report swn_selsen. The subscription works fine when setting a user and RML Internal SAP User, Furthermore, it also works with a * and CUS Receiver Determination Through Handler. Any ideas what the problem could be?
    Here is an example of my subscription settings:
    Scenario             
    WORKFLOW
    Category             
    MYCATEGORY
    Subscription        
    MYSUBSCRIPTION
    Description         
    Administrator Inbox
    Delivery Schedule  
    MYDELIVERYSCHEDULE
                          Deactivated                    
    Delivery Type       
    EMAIL_HTML
    Granularity         
    1 One Message Per Notification
    Recipient Address   
    myname @ company . com
    Recipient Type      
    INT Internet Mail
    Handler                                             
    Thanks.

    Hi,
    I solved the problem by creating my own subscription handler. It is a copy of CL_SWN_SUBSCRIPTION and reads a distribution list with an e-mail address.
    Cheers.

  • Recipient address rejected : Access denied (in reply to RCPT TO command)

    Hi,
    I run Mac OS X Server 10.5.5 with mail service. smtp is on port 587. I created an account which only forward to another account on an external domain.
    When trying to send a mail from outside to that account, the sender receive "554 5.7.1 <[email protected]>: Recipient address rejected : Access denied (in reply to RCPT TO command)".
    Any idea?
    Kind regards,
    Xavier.
    Here is my postconf:
    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
    html_directory = no
    inet_interfaces = all
    localrecipientmaps =
    luser_relay = xavier
    mail_owner = _postfix
    mailboxsizelimit = 0
    mailbox_transport = cyrus
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    messagesizelimit = 20971520
    mydestination = $myhostname,localhost.$mydomain,localhost,jehin.net
    mydomain = jehin.net
    mydomain_fallback = localhost
    myhostname = mail.jehin.net
    mynetworks = 127.0.0.0/8
    newaliases_path = /usr/bin/newaliases
    queue_directory = /private/var/spool/postfix
    readme_directory = /usr/share/doc/postfix
    relayhost = relay.skynet.be
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = _postdrop
    smtpdenforcetls = no
    smtpdpw_server_securityoptions = none
    smtpdrecipientrestrictions = permitmynetworks,reject_unauthdestination,permit
    smtpdsasl_authenable = no
    smtpdtls_certfile = /etc/certificates/Default.crt
    smtpdtls_keyfile = /etc/certificates/Default.key
    smtpdtlsloglevel = 0
    smtpduse_pwserver = no
    smtpdusetls = yes
    unknownlocal_recipient_rejectcode = 550
    virtualmailboxdomains = hash:/etc/postfix/virtual_domains
    virtual_transport = lmtp:unix:/var/imap/socket/lmtp

    I apologize... Was trying to find a solution too and looks like I forgot to inform you about that point ...
    This is the new result in log (for an outside mail):
    Oct 27 22:26:54 jehin postfix/tlsmgr[15509]: warning: no entropy source specified with parameter tlsrandomsource
    Oct 27 22:26:54 jehin postfix/tlsmgr[15509]: warning: encryption keys etc. may be predictable
    Oct 27 22:26:54 jehin postfix/smtpd[15508]: connect from mhfr-03-bos.mailhop.org[63.208.196.167]
    Oct 27 22:26:55 jehin postfix/trivial-rewrite[15511]: warning: do not list domain jehin.net in BOTH mydestination and virtualmailboxdomains
    Oct 27 22:26:55 jehin postfix/smtpd[15508]: NOQUEUE: reject: RCPT from mhfr-03-bos.mailhop.org[63.208.196.167]: 554 5.7.1 <[email protected]>: Recipient address rejected: Access denied; from=<[email protected]> to=<[email protected]> proto=SMTP helo=<mhfr-03-bos.mailhop.org>
    Oct 27 22:26:55 jehin postfix/smtpd[15508]: disconnect from mhfr-03-bos.mailhop.org[63.208.196.167]
    Telnet test:
    sh-3.2# telnet jehin.net 587
    Trying 81.245.99.141...
    Connected to jehin.net.
    Escape character is '^]'.
    220 mail.jehin.net ESMTP Postfix
    helo me
    250 mail.jehin.net
    mail from:
    250 2.1.0 Ok
    rcpt to:<[email protected]>
    554 5.7.1 <[email protected]>: Recipient address rejected: Access denied
    quit
    221 2.0.0 Bye
    Connection closed by foreign host.
    its log:
    Oct 27 22:29:02 jehin postfix/smtpd[15528]: connect from unknown[10.185.112.199]
    Oct 27 22:30:11 jehin postfix/trivial-rewrite[15532]: warning: do not list domain jehin.net in BOTH mydestination and virtualmailboxdomains
    Oct 27 22:30:11 jehin postfix/smtpd[15528]: NOQUEUE: reject: RCPT from unknown[10.185.112.199]: 554 5.7.1 <[email protected]>: Recipient address rejected: Access denied; from= to=<[email protected]> proto=SMTP helo=<me>
    Oct 27 22:30:20 jehin postfix/smtpd[15528]: disconnect from unknown[10.185.112.199]

  • 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

  • Table for invoice mailing address

    hi gurus,
    is there any database table for the invoice mailing address?
    thanks.

    Hi
    Go through the link given below : you wil find tables related invoice.
    http://www.erpgenie.com/abap/tables.htm
    With Regards
    Nikunj Shah
    Edited by: Nikunj Shah on Jul 9, 2008 5:38 AM

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

  • Goods recipient address in SC PDF file

    Hi Gurus,
    We are assigning couple of users in one EBP Purchasing org. when the users create  the SC, the Goods recipient address are coming from the EBP org address tab in the SC PDF attachment. we have a requirement wherein we need to maintain a different address for different user in the SC PDF file.
    Could you please suggest us, if it is possible.
    FYI, we have tried to maintain the address in user specific in BP and SU01D, but it is not working. we are using the SAP smart form BBP_SC.
    Thanks & regards,
    Sada

    Hi,
    If you maintain address no. bellow attribute at the positon level you will be able to achive different delivery point printed on the SC, so that each user will have different address. This can be used as a workaround with out any enhancment.
    Delivery address  ADDR_SHIPT     
    If you are good with enhancement check if you can use DOC CHANGE BADI for changing the address.
    with regards
    Manjunath

  • Email template, no recipient address

    Hi all,
    I'm trying to send an account creation notification, but keep getting this error:
    Failure sending email: com.waveset.exception.ServiceNotResponding: ==> javax.mail.SendFailedException: No recipient addresses
    But if i redirect the same message to a txt file (as set in Waveset.Properties), the email created does have the correct toAddress specified.
    Any suggestions?
    Message was edited by:
    tine_de_mik
    Message was edited by:
    tine_de_mik

    sending email is a pretty straight forward thing in SIM.Write the SMTP host address and toaddress.Thats it .You are all set.Why dont you write a workflow to just send email and see whether you get the same error.

  • Outlook Express dropping recipient address with mailto:

    Sites with mailto: links are not passing through the recipient address to Outlook Express with Firefox 5. This problem has persisted for at least 4 months now and a fix was promised months ago. I am running 5.0.1 on a PC with Windows XP. Outlook Express does execute, but the new message window does not open and of course nothing is filled in.

    ''mailto: links not being passed to Outlook Express''
    Could you post the webpage, and the reference to the problem and where a solution in the works. Is it a problem only with XP because I've never run into such a problem. If people had to adjust their settings for it to work then use of mailto would not be practical to use at all.
    The only problem I've had was with the use of Redirect remover but that was a long time ago, the problem could be bypassed and it was fixed by the extension author. Does the problem happen in Safe Mode if it doesn't then that would mean that an extension is probably the cause.
    '''Safe Mode''': bring up in safe mode one time, when you do so do not check-mark any of the items (they are certainly not safe). Help ("Alt+H") > "Restart with Add-ons disabled". If there is not problem then it is almost certainly an extension.
    *http://kb.mozillazine.org/Standard_diagnostic_%28Firefox%29#Extension_issues
    Help (Alt+H) --> Restart with Add-ons disabled
    (this is Firefox Safe Mode -- Fx4 has made this easier)

  • "Recipient address not valid" regedit

    I am wondering if anyone nows how to turn off the following MailTip with a registry setting. I would like to turn off "Recipient address not valid" it is located under Undeliverable Message MailTips. The reason being is we have users within our
    organization that do not have email addresses but are part of a location group.
    Thank You in advance for any help on this.
    Troy

    Hi Troy,
    Do you want to configure organizational settings for "Recipient address not valid" MailTip?
    As far as I know, there is no such registry setting to control the "Recipient address not valid" MailTip. We can only disable the MailTip feature to achieve this goal. See:
    Configure Organizational Settings for MailTips:
    http://technet.microsoft.com/en-us/library/dd638109.aspx
    In addition, you can also post in Exchange forum to get further assistance:
    http://social.technet.microsoft.com/Forums/exchange/en-US/home?category=exchangeserverlegacy&filter=alltypes&sort=lastpostdesc
    Regards,
    Steve Fan
    TechNet Community Support

Maybe you are looking for