Mail not delivered to external email ids

Hi,
I have configured the mail server in SCOT and i am able to receive mails to the Companies internal email ids, but if i send mails to external emails like gmail, it says
"No delivery to <external email id>, as recipient unknown"
but, the email id. is correct.
SAP Server ip addresses have been added to the relay list of the exchange server.
Following entries made in SCOT:
- The default domain
- Mail host and mail port
- * given in Address Area
- Node in Use ticked under General Information
Mails are getting delivered to internal email ids from SAP, problem is only when sending to external email ids.  Please clarify.
Thanks and Regards,
Nagu

Hi,
Check the link below
http://www.sapfans.com/forums/viewtopic.php?p=812935
Rgds,
Suman

Similar Messages

  • Mail not sent to External email address -SOST looks OK

    Hi,
    We've sent a report output to external email address.
    When I checked in SOST it shows as sent.But the user did not receive it.
    Could please advice what could be the cause of it.
    Thanks,
    Venkat

    Check with your Basis admin - there could be many possible causes, including problems with the mail server on either side. Also try sending to another email - sometimes spam-filtering software filters are too strict on the receiving end.
    This has nothing to do with ABAP IMHO.

  • Send Alerts to external email ids

    Dear All,
    I am using ALERT MANAGEMENT to raise alerts and send mail to recipients. I am able to send external mails to
    those users who have got a SAP Userid where the email id is maintained in the user profile. But suppose I want
    to send mails to external users who do not have SAP Userid, then how to do it.  I checked the program
    RSALERTTEST where it gives the option to send mails to external email ids.
    Regards,
    Pravat.

    Hi Pravat,
    You can do this with SALRT_CREATE_API. But you have to create a alert  category. go to ALRTCATDEF with a user role " SAP_XI_ADMINISTRATOR".
    Then create category and give your receivers.
    Then write a program like rsalrtdemo1 . This shows you how an alert can be called directly by a function module.
    Also you can get more detailed information from these links :
    Creating Alert Categories : http://help.sap.com/saphelp_nw70/helpdata/en/d0/d4b54020c6792ae10000000a155106/frameset.htm
    Triggering Alerts : http://help.sap.com/saphelp_nw04s/helpdata/en/d0/5e073c8e56f658e10000000a114084/content.htm
    I hope they help you.
    Regards,
    Orhan

  • Mail Activity but mail not delivered

    Mail 5.0, Lion
    I see Mail Activity (10 messages) but mail not delivered. This repeats at check mail intervals.
    It was working fine - and now it doesn't.
    Any thoughts?
    Kind Regards
    Hugh

    Me too suddenly stop sending or recieving any of yahoo messeges first on my Macbook pro then i enabled the keychain for sync in my mobileMe then it comes to my iMac ,,,, same issue,

  • Send mails with attachment to external email id

    Hi Folks,
    I have an ALV report, the output of which needs to be sent as an excel attachment to an external email id. Can I use SO_NEW_DOCUMENT_ATT_SEND_API1 in this case? What about the SAP Connect settings? Any documents/help files/code samples describing the same will be useful.
    /Sagar

    HI,
    If you want to send the ALV output as it is then you need send it to Spool and then convert it to a PDF then send it via email as an attachment,
    or else, if you want to send the data of the output you can send it by the final internal table i mean by using the final Internal table you can send the data by passing this final interanl table to <b>'SO_NEW_DOCUMENT_ATT_SEND_API1'</b>
    <u>example for your understanding:</u>
    DATA: OBJPACK   LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
      DATA: OBJHEAD   LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
      DATA: OBJBIN    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
      DATA: OBJTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
      DATA: RECLIST   LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
      DATA: DOC_CHNG  LIKE SODOCCHGI1.
      DATA: TAB_LINES LIKE SY-TABIX.
      DATA L_NUM(3).
    Creation of the document to be sent
    File Name
      DOC_CHNG-OBJ_NAME = 'SENDFILE'.
    Mail Subject
      DOC_CHNG-OBJ_DESCR = 'Delivered Mail'.
    Mail Contents
      OBJTXT = 'Object text'.
      APPEND OBJTXT.
      DESCRIBE TABLE OBJTXT LINES TAB_LINES.
      READ TABLE OBJTXT INDEX TAB_LINES.
      DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    Creation of the entry for the compressed document
      CLEAR OBJPACK-TRANSF_BIN.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = TAB_LINES.
      OBJPACK-DOC_TYPE = 'RAW'.
      APPEND OBJPACK.
    Creation of the document attachment
      LOOP AT ITAB_DATA.
        CONCATENATE ITAB_DATA-PRODUCTOR
                    ITAB_DATA-VBELN
                    ITAB_DATA-POSNR
                    ITAB_DATA-MATNR INTO OBJBIN.
        APPEND OBJBIN.
      ENDLOOP.
      DESCRIBE TABLE OBJBIN LINES TAB_LINES.
      OBJHEAD = 'ORDERS'.
      APPEND OBJHEAD.
    Creation of the entry for the compressed attachment
      OBJPACK-TRANSF_BIN = 'X'.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM   = 1.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM   = TAB_LINES.
      OBJPACK-DOC_TYPE   = 'TXT'.
      OBJPACK-OBJ_NAME   = 'WEBSITE'.
      OBJPACK-OBJ_DESCR  = 'ORDERS.TXT'.
      OBJPACK-DOC_SIZE   = TAB_LINES * 255.
      APPEND OBJPACK.
    Completing the recipient list
    target recipent
      clear RECLIST.
      RECLIST-RECEIVER = '[email protected]'.
      RECLIST-EXPRESS  = 'X'.
      RECLIST-REC_TYPE = 'U'.
      APPEND RECLIST.
    copy recipents
      clear RECLIST.
      RECLIST-RECEIVER = '[email protected]'.
      RECLIST-EXPRESS  = 'X'.
      RECLIST-REC_TYPE = 'U'.
      RECLIST-COPY     = 'X'.
      APPEND RECLIST.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = DOC_CHNG
           TABLES
                PACKING_LIST               = OBJPACK
                OBJECT_HEADER              = OBJHEAD
                CONTENTS_BIN               = OBJBIN
                CONTENTS_TXT               = OBJTXT
                RECEIVERS                  = RECLIST
           EXCEPTIONS
                TOO_MANY_RECEIVERS         = 1
                DOCUMENT_NOT_SENT          = 2
                OPERATION_NO_AUTHORIZATION = 4
                OTHERS                     = 99.
    ENDFORM.                    " SEND_MAIL

  • Email not sent to external email id

    Hi All,
    We have a particular user who is not receving the email notifications/ reminders to approve leaves on his lotus notes id.
    Its only this particular user who is having this problem.
    If i trace the workflow (leave sbmitted by his subordinates) the  sending notification task has completed status but in SOST there is no record of a mail sent.
    Have checked SU01 the user has an email address maintained both in ESS and R/3.
    As per config SO16 - home address is selected.
    In the profile his external email id is selected as home address.
    what should i check next to sort out the issue.
    Thanks & Regards,
    Swati Sahu

    Hi Swati,
    Try to maintain an auto-forwarding email address for this user using transaction SO36 and check if that solves your problem.
    Regards,
    Jigar

  • Windows Live Mail not connceting with BT email

    Hi
    After 11 weeks trying to get help from BT I managed to get my BT email working, sort of. The problem I'm left with is that Windows Live Mail will not connect to it, an error message of user or password not recognised appears. I've read various messages on the internet but still have had no success. My Windows Live settings are as follows:
    Servers
    My incoming mail server: POP3
    Incoming mail: mail.btinternet.com
    Outgoing mail: mail.btinternet.com
    Email username: [email protected]  (have tried this with the part before the @ also)
    Password: xxxxx (Password working on BT email)
    Log on using clear text authentication
    Advanced
    Server port numbers:
    Outgoing mail: 465 with SSL ticked
    Incoming mail: 995 with SSL ticked
    Any idea what is wrong? Should I go back to BT about this when incoming and outgoing mail is working using BT email? Thanks for any help
    Goggs

    I use the following settings on Windows Live Mail with BTMail on Windows 7
    Open your Windows Mail
    Go to Tools > Accounts > Properties
    Check in user Information that you have entered your name and the full email address. Tick the box “include this account when receiving mail etc”
    Click the Servers Tab
    My incoming mail server is POP3
    Incoming mail (POP3) mail.btinternet.com
    Outgoing mail (SMTP) mail.btinternet.com
    Incoming Mail server:
    Email username: Prefix of your email address
    Password: (your normal email password)
    Tick the box “remember password”
    Tick “log on using secure authentication”
    Outgoing Mail Server:
    Tick box “my server requires authentication”
    Click on the button “Settings” ensure that it is using “use same settings as my incoming server”
    There are no changes in the “Connection” or “Security” tabs so ignore them.
    Click on the “Advanced” tab
    Server Port Numbers
    Outgoing (SMTP) 465
    Tick box “requires secure connection (SSL)
    Incoming (POP3) 995
    Tick box “requires secure connection (SSL)
    Delivery:
    Tick the box “leave copy on server”
    Click OK and close the mail down.

  • Mail not delivering to one user

    Hi,
    I have a 10.5.8 server where mail stopped delivering one user a few days ago. Mail to all other users is fine.
    I ran mailbfr to rebuild the user database, then the permissions and finally after those steps didn't work I rebuilt the entire database. I can see 160 messages in queue for the user but they all have temporary failure listed on them.
    Any ideas would be appreciated?

    Hi.
    Increase logging level for IMAP to "Debug".
    /var/log/mailaccess.log should then give you clues as to what is broken.
    Alex

  • Mail not delivered for 4 hours warning message

    I've recently started getting .mac mail bounced back to me from MAIL DELIVERY SUBSYSTEM saying that the message couldn't be delivered for the past 4 hours and would continue trying for 4 days. They never seem to go through.
    This only happens with mail to my parents. I can send them mail from a different ISP account, and my husband can send them mail from his .mac account. I have not changed my preferences and neither have they. I would suspect their ISP, except that my husband's .mac mail goes through.
    Any idea what the problem might be? Here's the relevant information from the warning message:
    <parents' address>...Deferred:Invalid argument
    Warnng: message still undelivered after 4 hours
    Will keep trying until message is 4 days old
    Reporting-MTA: dns; smtpout.mac.com
    Action: delayed
    Status: 4.4.2
    MacBook   Mac OS X (10.4.7)  

    You are apparently not alone - this from Macfixit today:
    Updated Friday, February 09 2007 @ 09:15 AM PST
    Today's Featured Article
    Late-Breakers
    .Mac outages, problems accessing email (#2): possible fixes
    Users are continuing to report (in droves) problems accessing .Mac services -- particularly mail -- over the past few days.
    Most reports indicate problems accessing .Mac mail from within various clients, including Mail.app. As such, the best stop-gap solution is to simply use the .Mac webmail interface in most cases
    However, some users have also reported problems receiving messages through the webmail interface.
    MacFixIt reader Michael Novelli writes:
    "My .mac mail account stopped working yesterday. I can access it online."
    Another reader adds:
    "Same issue here with .Mac email. If I look at the Activity Viewer I can see my other email accounts connect and finish but .Mac just hangs with the blue and white candy cane progress bar. .Mac has become so unreliable that I cannot use it as my main account and have chosen another email service."
    MacFixIt reader Jim writes:
    "I am also encountering problems accessing .Mac mail with Eudora. Mail is apparently going out using .Mac and Eudora, but the problem is receiving mail."
    Tom James reports issues with other areas of .Mac service:
    "In addition to the problems accessing .mail via Mail, I had a problem today updating my .mac website. The server consistently refused to make changes to the welcome page even though iWeb organiser reported that the site as amended had been published. Deletion of the site in iWeb and creation of a second site initially did not work either but it n ow appears to have been updated. Perhaps there were delays in implementing changes due to the creaky nature of .Mac servers."
    Possible fixes
    Clear caches We've received unconfirmed reports that running the maintenance routines offered by AppleJack can resolve some .Mac connectivity issues -- potentially indicating cache corruption as a cause of problems. Cache cleaning can also be accomplished with tools like Cocktail or Tiger Cache Cleaner.
    Just restart In other cases, a simple restart can have a beneficial effect. MacFixIt reader Tracey writes:
    "I also experienced the .Mac mail connection problem yesterday utilizing Mail.app Version 2.1.1 (752.3). In my case, after a half an hour of being unable to connect, it finally dawned on me to go back to the basics of troubleshooting. After a reboot, and a subsequent relaunch of Mail.app, my .Mac mail became immediately responsive, and has been working without a glitch ever since (24 hours). It was a pretty simple fix in my case (or a serendipitous coincidence of timing)."

  • ICloud mail not delivering mail from specific address

    I'm having a recurring issue with iCloud mail. Email alerts from my home alarm company are being intercepted on Apple's server side, and are not being delivered to me. I called Apple Support more than a week ago to report this problem, and the representative added the email address to a "white list." This fixed the problem.... for about a week. Now iCloud is up to its old tricks, killing these emails before they get to me. Sounds like an overzealous junk mail algorithm on Apple's server side is mis-identifying this email address as a spam.
    And the email is NOT being classified as junk by my computer. It never reaches my computer--it's not in any junk or trash folder on my side.

    I use the term "Desktop" to indicate my iMac and my Macbook - the email is actually in my Mailbox on my Macbook. I move it from my Inbox to a folder on icloud. Then it syncs and the email is back in my Inbox.
    Sorry my use of the word  "desktop" comes from 25 years managing Windows desktop computers.......

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

  • Mail not delivered to outside recipients with same name on server - Bug?

    Hi,
    I'm testing the mail server before telling my boss it's OK to move from our old sun "appliance". I have set up all users names and passords on our new mac mini the same as they are on that old server.
    The server will be thisdomain,com and the recipients will be thatdomain.com.
    I am off site and testing from home using mail.thisdomain,com as my outgoing server. I have all spam controls off for testing. In this example I am scott @ thisdomain.com trying to send an email to carol @ thatdomain.com.
    What's happening is that carol @ thatdomain.com is not getting the message. instead it is being dlivered to the carol on the server at carol @ thisdomain.com
    Does anybody know why this is happening and how to fix it? The log even says "orig_to=<carol @ thatdomain.com>" Here is the complete session:
    Sep 24 13:18:08 thisdomain.com postfix/postscreen[33490]: CONNECT from [50.174.118.164]:50680 to [173.164.166.20]:25
    Sep 24 13:18:14 thisdomain.com postfix/postscreen[33490]: PASS OLD [50.174.118.164]:50680
    Sep 24 13:18:14 thisdomain.com postfix/smtpd[33493]: connect from c-50-174-118-164.hsd1.ca.comcast.net[50.174.118.164]
    Sep 24 13:18:15 thisdomain.com postfix/smtpd[33493]: 9069B18C6CA: client=c-50-174-118-164.hsd1.ca.comcast.net[50.174.118.164], sasl_method=CRAM-MD5, sasl_username=scott
    Sep 24 13:18:15 thisdomain.com postfix/cleanup[33502]: sacl_check: mbr_user_name_to_uuid([email protected]) failed: No such file or directory
    Sep 24 13:18:15 thisdomain.com postfix/cleanup[33502]: 9069B18C6CA: message-id=<CE674190.1E707%[email protected]>
    Sep 24 13:18:15 thisdomain.com postfix/qmgr[33388]: 9069B18C6CA: from=<[email protected]>, size=723, nrcpt=1 (queue active)
    Sep 24 13:18:15 thisdomain.com postfix/pipe[33504]: 9069B18C6CA: to=<[email protected]>, orig_to=<[email protected]>, relay=dovecot, delay=0.59, delays=0.43/0.03/0/0.14, dsn=2.0.0, status=sent (delivered via dovecot service)
    Sep 24 13:18:15 thisdomain.com postfix/qmgr[33388]: 9069B18C6CA: removed
    Sep 24 13:18:21 thisdomain.com postfix/smtpd[33493]: disconnect from c-50-174-118-164.hsd1.ca.comcast.net[50.174.118.164]
    I also worry about the line:
    sacl_check: mbr_user_name_to_uuid(carol @ thisdomain.com) failed: No such file or directory
    This is driving me batty, so any help appreciated.
    Scott

    This is supposed to be the server for  thisdomain,com  and I have not entered anything in for  thatdomain.com. So that is really puzzling. Is there anything you can help me with in the postconf below?  Thanks!
    postconf -n
    biff = no
    command_directory = /usr/sbin
    config_directory = /Library/Server/Mail/Config/postfix
    daemon_directory = /usr/libexec/postfix
    data_directory = /Library/Server/Mail/Data/mta
    debug_peer_level = 2
    debugger_command = PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin xxgdb $daemon_directory/$process_name $process_id & sleep 5
    dovecot_destination_recipient_limit = 1
    html_directory = /usr/share/doc/postfix/html
    imap_submit_cred_file = /Library/Server/Mail/Config/postfix/submit.cred
    inet_interfaces = loopback-only
    inet_protocols = all
    mail_owner = _postfix
    mailbox_size_limit = 0
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    message_size_limit = 10485760
    mydomain_fallback = localhost
    mynetworks = 127.0.0.0/8, [::1]/128
    newaliases_path = /usr/bin/newaliases
    queue_directory = /Library/Server/Mail/Data/spool
    readme_directory = /usr/share/doc/postfix
    recipient_delimiter = +
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = _postdrop
    smtpd_client_restrictions = permit_mynetworks permit_sasl_authenticated permit
    smtpd_tls_ciphers = medium
    smtpd_tls_exclude_ciphers = SSLv2, aNULL, ADH, eNULL
    tls_random_source = dev:/dev/urandom
    unknown_local_recipient_reject_code = 550
    use_sacl_cache = yes

  • Can not SEND to external emails

    Customer I support is having Blackberry device issue:
    I use the Desktop Manager to sync my BB emails.   This morning, after our server with BES on it was rebooted (and, my computer was still on at the time), i discovered that I could no longer send emails outside the office.  I can send internally and also can receive emails both internally and from outside addresses.  My BB phone service works.   No other BB user in the office suffering this problem.  What can I do?

    I don't think I've messed other blocklimits than those in my post.
    I know that service.http.maxmessagesize and service.http.maxpostsize are for webmail only.
    I can send big mails but I can not RECEIVE big mails. That's the problem.
    In my previous post I've pasted the error messages.

  • Amavisd not running, mails not delivered when spam filter is enabled

    Hey everyone,
    So I've got a slight problem here with a 10.4.11 server. Our spam filter was set to be too tolerant of spam, allowing a threshold 22.0 before bouncing it, so through the command line I edited /etc/amavisd.conf to $sa_kill_level_deflt = 6.0; tag2 is set to 3.0. Then I bounced amavisd via:
    sudo /bin/launchctl unload /System/Library/LaunchDaemons/org.amavis.amavisd.plist
    sudo /bin/launchctl load /System/Library/LaunchDaemons/org.amavis.amavisd.plist
    Well that caused all sorts of whacky issues with the queue. The server couldn't connect to itself and wouldn't deliver any mail, only queue it up. So I went back in to amavisd.conf and changed the parameters back to default, then bounced amavisd again. To no avail. Then I restored from a backup file I had created and bounced amavisd again to no avail.
    Finally I removed the junkmail and virus filters via SA, saved, then reenabled them to no avail. Then I just disabled them and mail is flowing again, but I still have 187 messages in my queue that wont get delivered no matter how many times I flush it.
    After more research, I issued a ps -U clamav to see if amavisd is running, below are the only results I get:
    PID TT STAT TIME COMMAND
    1291 ?? Ss 0:00.01 freshclam -d -D -pfreshclam.pid -c 1
    I would assume it is NOT running...? I next issued amavisd to see if it throws any errors, and get the following:
    ERROR: MISSING REQUIRED BASIC MODULES:
    MIME::Parser
    BEGIN failed--compilation aborted at /usr/bin/amavisd line 139.
    So my next question is how do I repair amavisd so I can get it to run so I can reenable the content filter. Here are the results of postconf in case you need them:
    2bounce_notice_recipient = postmaster
    access_map_reject_code = 554
    address_verify_default_transport = $default_transport
    address_verify_local_transport = $local_transport
    address_verify_map =
    address_verify_negative_cache = yes
    address_verify_negative_expire_time = 3d
    address_verify_negative_refresh_time = 3h
    address_verify_poll_count = 3
    address_verify_poll_delay = 3s
    address_verify_positive_expire_time = 31d
    address_verify_positive_refresh_time = 7d
    address_verify_relay_transport = $relay_transport
    address_verify_relayhost = $relayhost
    address_verify_sender = postmaster
    address_verify_service_name = verify
    address_verify_transport_maps = $transport_maps
    address_verify_virtual_transport = $virtual_transport
    alias_database = hash:/etc/aliases
    alias_maps = hash:/etc/aliases
    allow_mail_to_commands = alias, forward
    allow_mail_to_files = alias, forward
    allow_min_user = no
    allow_percent_hack = yes
    allow_untrusted_routing = no
    alternate_config_directories =
    always_bcc =
    append_at_myorigin = yes
    append_dot_mydomain = yes
    application_event_drain_time = 100s
    backwards_bounce_logfile_compatibility = yes
    berkeley_db_create_buffer_size = 16777216
    berkeley_db_read_buffer_size = 131072
    best_mx_transport =
    biff = yes
    body_checks =
    body_checks_size_limit = 51200
    bounce_notice_recipient = postmaster
    bounce_queue_lifetime = 5d
    bounce_service_name = bounce
    bounce_size_limit = 50000
    broken_sasl_auth_clients = no
    canonical_maps =
    cleanup_service_name = cleanup
    command_directory = /usr/sbin
    command_expansion_filter = 1234567890!@%-_=+:,./abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    command_time_limit = 1000s
    config_directory = /etc/postfix
    content_filter =
    daemon_directory = /usr/libexec/postfix
    daemon_timeout = 18000s
    debug_peer_level = 2
    debug_peer_list =
    default_database_type = hash
    default_delivery_slot_cost = 5
    default_delivery_slot_discount = 50
    default_delivery_slot_loan = 3
    default_destination_concurrency_limit = 20
    default_destination_recipient_limit = 50
    default_extra_recipient_limit = 1000
    default_minimum_delivery_slots = 3
    default_privs = nobody
    default_process_limit = 100
    default_rbl_reply = $rbl_code Service unavailable; $rbl_class [$rbl_what] blocked using $rbl_domain${rbl_reason?; $rbl_reason}
    default_recipient_limit = 10000
    default_transport = smtp
    default_verp_delimiters = +=
    defer_code = 450
    defer_service_name = defer
    defer_transports =
    delay_notice_recipient = postmaster
    delay_warning_time = 0h
    deliver_lock_attempts = 20
    deliver_lock_delay = 1s
    disable_dns_lookups = no
    disable_mime_input_processing = no
    disable_mime_output_conversion = no
    disable_verp_bounces = no
    disable_vrfy_command = no
    dont_remove = 0
    double_bounce_sender = double-bounce
    duplicate_filter_limit = 1000
    empty_address_recipient = MAILER-DAEMON
    enable_errors_to = no
    enable_original_recipient = yes
    enable_server_options = yes
    error_notice_recipient = postmaster
    error_service_name = error
    expand_owner_alias = no
    export_environment = TZ MAIL_CONFIG
    fallback_relay =
    fallback_transport =
    fast_flush_domains = $relay_domains
    fast_flush_purge_time = 7d
    fast_flush_refresh_time = 12h
    fault_injection_code = 0
    flush_service_name = flush
    fork_attempts = 5
    fork_delay = 1s
    forward_expansion_filter = 1234567890!@%-_=+:,./abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
    forward_path = $home/.forward${recipient_delimiter}${extension}, $home/.forward
    hash_queue_depth = 1
    hash_queue_names = incoming, active, deferred, bounce, defer, flush, hold, trace
    header_address_token_limit = 10240
    header_checks =
    header_size_limit = 102400
    helpful_warnings = yes
    home_mailbox =
    hopcount_limit = 50
    html_directory = no
    ignore_mx_lookup_error = no
    import_environment = MAIL_CONFIG MAIL_DEBUG MAIL_LOGTAG TZ XAUTHORITY DISPLAY
    in_flow_delay = 1s
    inet_interfaces = all
    initial_destination_concurrency = 5
    invalid_hostname_reject_code = 501
    ipc_idle = 100s
    ipc_timeout = 3600s
    ipc_ttl = 1000s
    line_length_limit = 2048
    lmtp_cache_connection = yes
    lmtp_connect_timeout = 0s
    lmtp_data_done_timeout = 600s
    lmtp_data_init_timeout = 120s
    lmtp_data_xfer_timeout = 180s
    lmtp_destination_concurrency_limit = $default_destination_concurrency_limit
    lmtp_destination_recipient_limit = $default_destination_recipient_limit
    lmtp_lhlo_timeout = 300s
    lmtp_mail_timeout = 300s
    lmtp_quit_timeout = 300s
    lmtp_rcpt_timeout = 300s
    lmtp_rset_timeout = 120s
    lmtp_sasl_auth_enable = no
    lmtp_sasl_password_maps =
    lmtp_sasl_security_options = noplaintext, noanonymous
    lmtp_send_xforward_command = no
    lmtp_skip_quit_response = no
    lmtp_tcp_port = 24
    lmtp_xforward_timeout = 300s
    local_command_shell =
    local_destination_concurrency_limit = 2
    local_destination_recipient_limit = 1
    local_recipient_maps =
    local_transport = local:$myhostname
    luser_relay = undeliverable
    mail_name = Postfix
    mail_owner = postfix
    mail_release_date = 20040915
    mail_spool_directory = /var/mail
    mail_version = 2.1.5
    mailbox_command =
    mailbox_command_maps =
    mailbox_delivery_lock = flock
    mailbox_size_limit = 0
    mailbox_transport = cyrus
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    maps_rbl_domains =
    maps_rbl_reject_code = 554
    masquerade_classes = envelope_sender, header_sender, header_recipient
    masquerade_domains =
    masquerade_exceptions =
    max_idle = 100s
    max_use = 100
    maximal_backoff_time = 4000s
    maximal_queue_lifetime = 5d
    message_size_limit = 0
    mime_boundary_length_limit = 2048
    mime_header_checks = $header_checks
    mime_nesting_limit = 100
    minimal_backoff_time = 1000s
    multi_recipient_bounce_reject_code = 550
    mydestination = $myhostname,localhost.$mydomain,localhost,mail.mnn.org,$mydomain,youthchannel.o rg,mnn.org
    mydomain = mnn.org
    mydomain_fallback = localhost
    myhostname = mail.mnn.org
    mynetworks = 127.0.0.0/8,192.168.0.0/16,216.164.83.160/27
    mynetworks_style = host
    myorigin = $myhostname
    nested_header_checks = $header_checks
    newaliases_path = /usr/bin/newaliases
    non_fqdn_reject_code = 504
    notify_classes = resource, software
    owner_request_special = yes
    parent_domain_matches_subdomains = debug_peer_list,fast_flush_domains,mynetworks,permit_mx_backup_networks,qmqpd_a uthorized_clients,relay_domains,smtpd_access_maps
    permit_mx_backup_networks =
    pickup_service_name = pickup
    prepend_delivered_header = command, file, forward
    process_id_directory = pid
    propagate_unmatched_extensions = canonical, virtual
    proxy_interfaces =
    proxy_read_maps = $local_recipient_maps $mydestination $virtual_alias_maps $virtual_alias_domains $virtual_mailbox_maps $virtual_mailbox_domains $relay_recipient_maps $relay_domains $canonical_maps $sender_canonical_maps $recipient_canonical_maps $relocated_maps $transport_maps $mynetworks
    qmgr_clog_warn_time = 300s
    qmgr_fudge_factor = 100
    qmgr_message_active_limit = 20000
    qmgr_message_recipient_limit = 20000
    qmgr_message_recipient_minimum = 10
    qmqpd_authorized_clients =
    qmqpd_error_delay = 1s
    qmqpd_timeout = 300s
    queue_directory = /private/var/spool/postfix
    queue_file_attribute_count_limit = 100
    queue_minfree = 0
    queue_run_delay = 1000s
    queue_service_name = qmgr
    rbl_reply_maps =
    readme_directory = /usr/share/doc/postfix
    receive_override_options =
    recipient_bcc_maps =
    recipient_canonical_maps =
    recipient_delimiter =
    reject_code = 554
    relay_clientcerts =
    relay_destination_concurrency_limit = $default_destination_concurrency_limit
    relay_destination_recipient_limit = $default_destination_recipient_limit
    relay_domains = $mydestination
    relay_domains_reject_code = 554
    relay_recipient_maps =
    relay_transport = relay
    relayhost =
    relocated_maps =
    require_home_directory = no
    resolve_dequoted_address = yes
    resolve_null_domain = no
    rewrite_service_name = rewrite
    sample_directory = /usr/share/doc/postfix/examples
    sender_based_routing = no
    sender_bcc_maps =
    sender_canonical_maps =
    sendmail_path = /usr/sbin/sendmail
    service_throttle_time = 60s
    setgid_group = postdrop
    show_user_unknown_table_name = yes
    showq_service_name = showq
    smtp_always_send_ehlo = yes
    smtp_bind_address =
    smtp_connect_timeout = 30s
    smtp_data_done_timeout = 600s
    smtp_data_init_timeout = 120s
    smtp_data_xfer_timeout = 180s
    smtp_defer_if_no_mx_address_found = no
    smtp_destination_concurrency_limit = $default_destination_concurrency_limit
    smtp_destination_recipient_limit = $default_destination_recipient_limit
    smtp_enforce_tls = no
    smtp_helo_name = $myhostname
    smtp_helo_timeout = 300s
    smtp_host_lookup = dns
    smtp_line_length_limit = 990
    smtp_mail_timeout = 300s
    smtp_mx_address_limit = 0
    smtp_mx_session_limit = 2
    smtp_never_send_ehlo = no
    smtp_pix_workaround_delay_time = 10s
    smtp_pix_workaround_threshold_time = 500s
    smtp_quit_timeout = 300s
    smtp_quote_rfc821_envelope = yes
    smtp_randomize_addresses = yes
    smtp_rcpt_timeout = 300s
    smtp_rset_timeout = 120s
    smtp_sasl_auth_enable = no
    smtp_sasl_password_maps =
    smtp_sasl_security_options = noplaintext, noanonymous
    smtp_sasl_tls_security_options = $var_smtp_sasl_opts
    smtp_sasl_tls_verified_security_options = $var_smtp_sasl_tls_opts
    smtp_send_xforward_command = no
    smtp_skip_5xx_greeting = yes
    smtp_skip_quit_response = yes
    smtp_starttls_timeout = 300s
    smtp_tls_CAfile =
    smtp_tls_CApath =
    smtp_tls_cert_file =
    smtp_tls_cipherlist =
    smtp_tls_dcert_file =
    smtp_tls_dkey_file = $smtp_tls_dcert_file
    smtp_tls_enforce_peername = yes
    smtp_tls_key_file = $smtp_tls_cert_file
    smtp_tls_loglevel = 0
    smtp_tls_note_starttls_offer = no
    smtp_tls_per_site =
    smtp_tls_scert_verifydepth = 5
    smtp_tls_session_cache_database =
    smtp_tls_session_cache_timeout = 3600s
    smtp_use_tls = no
    smtp_xforward_timeout = 300s
    smtpd_authorized_verp_clients = $authorized_verp_clients
    smtpd_authorized_xclient_hosts =
    smtpd_authorized_xforward_hosts =
    smtpd_banner = $myhostname ESMTP $mail_name
    smtpd_client_connection_count_limit = 50
    smtpd_client_connection_limit_exceptions = $mynetworks
    smtpd_client_connection_rate_limit = 0
    smtpd_client_restrictions = permit_mynetworks reject_rbl_client zen.spamhaus.org reject_rbl_client bl.spamcop.net permit
    smtpd_data_restrictions =
    smtpd_delay_reject = yes
    smtpd_enforce_tls = no
    smtpd_error_sleep_time = 1s
    smtpd_etrn_restrictions =
    smtpd_expansion_filter = \t\40!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghi jklmnopqrstuvwxyz{|}~
    smtpd_hard_error_limit = 20
    smtpd_helo_required = no
    smtpd_helo_restrictions =
    smtpd_history_flush_threshold = 100
    smtpd_junk_command_limit = 100
    smtpd_noop_commands =
    smtpd_null_access_lookup_key =
    smtpd_policy_service_max_idle = 300s
    smtpd_policy_service_max_ttl = 1000s
    smtpd_policy_service_timeout = 100s
    smtpd_proxy_ehlo = $myhostname
    smtpd_proxy_filter =
    smtpd_proxy_timeout = 100s
    smtpd_pw_server_security_options = gssapi,cram-md5,login,plain
    smtpd_recipient_limit = 1000
    smtpd_recipient_overshoot_limit = 1000
    smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination,permit
    smtpd_reject_unlisted_recipient = yes
    smtpd_reject_unlisted_sender = no
    smtpd_restriction_classes =
    smtpd_sasl_application_name = smtpd
    smtpd_sasl_auth_enable = yes
    smtpd_sasl_exceptions_networks =
    smtpd_sasl_local_domain =
    smtpd_sasl_security_options = noanonymous
    smtpd_sasl_tls_security_options = $smtpd_sasl_security_options
    smtpd_sender_login_maps =
    smtpd_sender_restrictions =
    smtpd_soft_error_limit = 10
    smtpd_starttls_timeout = 300s
    smtpd_timeout = 300s
    smtpd_tls_CAfile =
    smtpd_tls_CApath =
    smtpd_tls_ask_ccert = no
    smtpd_tls_auth_only = no
    smtpd_tls_ccert_verifydepth = 5
    smtpd_tls_cert_file =
    smtpd_tls_cipherlist =
    smtpd_tls_dcert_file =
    smtpd_tls_dh1024_param_file =
    smtpd_tls_dh512_param_file =
    smtpd_tls_dkey_file = $smtpd_tls_dcert_file
    smtpd_tls_key_file =
    smtpd_tls_loglevel = 0
    smtpd_tls_received_header = no
    smtpd_tls_req_ccert = no
    smtpd_tls_session_cache_database =
    smtpd_tls_session_cache_timeout = 3600s
    smtpd_tls_wrappermode = no
    smtpd_use_pw_server = yes
    smtpd_use_tls = no
    soft_bounce = no
    stale_lock_time = 500s
    strict_7bit_headers = no
    strict_8bitmime = no
    strict_8bitmime_body = no
    strict_mime_encoding_domain = no
    strict_rfc821_envelopes = no
    sun_mailtool_compatibility = no
    swap_bangpath = yes
    syslog_facility = mail
    syslog_name = postfix
    tls_daemon_random_bytes = 32
    tls_daemon_random_source =
    tls_random_bytes = 32
    tls_random_exchange_name = ${config_directory}/prng_exch
    tls_random_prng_update_period = 60s
    tls_random_reseed_period = 3600s
    tls_random_source =
    trace_service_name = trace
    transport_maps =
    transport_retry_time = 60s
    trigger_timeout = 10s
    undisclosed_recipients_header = To: undisclosed-recipients:;
    unknown_address_reject_code = 450
    unknown_client_reject_code = 450
    unknown_hostname_reject_code = 450
    unknown_local_recipient_reject_code = 550
    unknown_relay_recipient_reject_code = 550
    unknown_virtual_alias_reject_code = 550
    unknown_virtual_mailbox_reject_code = 550
    unverified_recipient_reject_code = 450
    unverified_sender_reject_code = 450
    verp_delimiter_filter = -=+
    virtual_alias_domains = $virtual_alias_maps
    virtual_alias_expansion_limit = 1000
    virtual_alias_maps = $virtual_maps
    virtual_alias_recursion_limit = 1000
    virtual_destination_concurrency_limit = $default_destination_concurrency_limit
    virtual_destination_recipient_limit = $default_destination_recipient_limit
    virtual_gid_maps =
    virtual_mailbox_base =
    virtual_mailbox_domains = $virtual_mailbox_maps
    virtual_mailbox_limit = 51200000
    virtual_mailbox_lock = fcntl
    virtual_mailbox_maps =
    virtual_minimum_uid = 100
    virtual_transport = virtual
    virtual_uid_maps =
    TIA for an help!
    Andrew

    To get the queue going, issue:
    sudo postsuper -r ALL
    That said, I would think you initially introduced a typo in amavisd.conf. Next you probably restored amavisd and amavisd.conf files which were incompatible with each other and/or amavis incompatible with the updated perl modules of the latest security update.
    To fix things, I would re-apply the latest combo updater and security updates (assuming you are running stock versions and have not installed your own versions of amavisd, etc).
    If things still do not work, please post the output of:
    amavisd -V

  • Exchange Server 2010: Incoming mail not delivered

    I have an Exchange Server 2010 Standard with all recent patches and updates. 
    -It has been in service for 3 years without any issues. 
    -There is plenty of hard drive space for the logs and the data (over 100GB in each)
    -The current size of the mail database is 150GB
    -There is no registry entry in place limiting the size of the database ([url="http://technet.microsoft.com/en-us/library/bb232092.aspx"]Database Size Limit in GB as outlined here[/url]
    Starting a few days ago, incoming mail is reaching the server but not being delivered to user mailboxes. Internal mail works fine when this happens. Looking at the Queue Viewer doesn't show anything abnormal. The Submission Queue shows nothing.  
    It is only after I reboot the Exchange Server that the Submission queue will show all the messages waiting to be delivered and they will all be delivered successfully after the reboot. The event logs do not show any error messages.
    The server will continue to run fine for a few hours and then the problem starts all over again.
    What could be causing this?

    Any 3rd party antivirus/anti-spam software installed on the server? If so, disable and test.
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

Maybe you are looking for

  • IPod -124 error message

    my ipod will start to update the first song i am trying to update and gives me an unknown error -124. it was making clicking noises while trying to update, but is working OK. does anyone now what this could be?

  • Putting 'Stop' markers in a sequence to be controlled  in indesign

    Hello; Does anyone know a way of having a video that has 'stop' markers placed in the timeline, so that the playback stops at that point, unless the user clicks the 'next' button (that i would set up in Indesign, as this will be an interactive PDF) I

  • How can I install fcp back to my G5

    I have one project to finish by the end of this week,but my G5 is too big to carry to library, so I borrowed my sister's macpro notebook and install my FCP 5, it edited the project today, but when I got home want to edit the rest from my G5, FCP does

  • TS3694 how come when i am restoring my iphone 3g is it coming up with error 1015

    how come when i am restoring my iphone 3g is it coming up with error 1015 just as it is verifirying the software??? help me please

  • ~500 MB "active or wired" RAM in 10.5 - can I reduce this?

    Hello! I have a 15" Powerbook G4, with 1 GB of RAM, running 10.5.1. Previously, I had it running 10.4.11. Leopard is very nice, but it's suffering far more instability than Tiger - simply because I keep running out of RAM. Under Tiger, a general rule