Vacation message breaks sieve filter

Hi,
Sun Java(tm) System Messaging Server 6.2-4.03 (built Sep 22 2005)
libimta.so 6.2-4.03 (built 04:37:42, Sep 22 2005)
SunOS mta1 5.10 Generic_118822-11 sun4u sparc SUNW,Sun-Fire-V240
User have created several sieve filters via UWC and they work ok. When user turns on vacation message sieve filters stop working. Log file indicates no errors but regular mail processing. Is this an expected behavior?
Thanks,
d.

Vacation message on should simply create a new sieve "vacation" action. There have indeed been bugs in this area, that have been fixed. Your server is about a year old, likely that's been fixed.

Similar Messages

  • Getting "Error in sieve filter" message with each incoming mail and cannot recieve or send mail to or from iCloud account apart from Apple emails!! Please help!

    Since approx 7am GMT I've been getting "Error in sieve filter" message with each incoming mail, worse though, since about 12 noon I cannot recieve or send mail to or from my iCloud account apart from I've been getting  emails from Apple (ie I've just received a welcome one from Apple Support Communities...)!! I've had this account for years, never had a problem - it can't be the OSX Mail server because the problem is the same when I log directly into iCloud. I've tried sending emails from my Hotmail account to my iCloud account (a .mac) and just get undeliverable messages back. I'm really in the s**t now at work. : (  I just set up a Smart TV yesterday with a wireless dongle - that's the only thing I've done out of the ordinary. I've spoken to Sky who are my ISP and they say all's fine with them (although the router kept kicking my off the internet this morning which was strange...). Router seems fine now though.  I'm really hoping someone here can help!!
    Many thanks!!

    Do you think once Apple sort this out I'll get my missing emails back?

  • Sieve filter body message

    Hi Oracle,
    I create an sieve filter as follow:
    if body :content_type "body/html" :contains :text "MAKE MONEY"
    +}+
    discard; stop;
    +}+
    When email in, out server, I received an problem email with content: Reason: Error in sieve filter: Body not listed in require clause prior to use around input line 41
    What's wrong with me?

    Hi,
    I see a number of problems with you attempt :
    -> body sieve filtering is something of MS7.
    What version of Messaging Server are you using ? (imsimta version)
    -> you should start this filter with :
    require ["body"];
    -> the sieve body filtering is according RFC5173, and there is no such thing like ":content_type".
    A better attempt would be :
    if body :text :contains "MAKE MONEY"
    -> the first bracket after the if statement should be '{'
    All together, your filter should look more like this :
    require ["body"];
    if body :text :contains "MAKE MONEY"
    discard; stop;
    There are a few remarks left to be made :
    - to enable sieve filtering in the body part of mails, you will have to enable this.
    Put in the option.dat the following :
    ENABLE_SIEVE_BODY=1
    This is mentioned here .
    Do not forget to [rebuild the config|https://wikis.oracle.com/display/CommSuite/About+MTA+Services+and+Configuration#AboutMTAServicesandConfiguration-CompilingtheMTAConfiguration] .
    - afaik. there are some limitations to this filtering method.
    Eg. The only body transforms supported are :raw and :text; :content is not supported
    I must admit I do not see this currently documented somewhere, but I will try to get his done.
    Cheers, Ben

  • How do you stop a message filter vacation message from responding repeatedly to a failure message?

    I set up a message filter for a vacation message while I was away. The problem is, every time I get a junk message (like from LinkedIn, Facebook, etc.), it sends the vacation message, then gets a failure message, and then responds to the failure message. This keeps happening until I can get into my settings and shut off the filter. Sometime I come back to over 200 failure messages because it just keeps sending the auto response over and over.
    Any suggestions on how to avoid this?

    the support article [[Vacation Response|here]] says use the setting provided by your service provider on their web site for a reason.
    To answer your specific question, you will need to check the from email is not one of those junk email addresses (perhaps an address book could be created for them and the filter check it accordingly. You filter will also need to check the message is not a delivery failure notification and in truth will still bury someone is vacation responses because it sends them one every time they email you.

  • Vacation messages / server side mail rules

    With WebMail depreciated in OS X Server, is there a recommended (incorporated) way for users to configure vacation messages and other server side rules?

    The seive rules are referenced by the imap server on OS X and it is responsible for the mail sort. The old webmail (SquirrelMail) and the newer webmail on Lion (Roundcube) were only writing the rules that the sieve engine of the server were reading.  In other words, the webmail doesn't handle the sorting of the incoming messages, its built in filter settings write the rules that the server uses to sort them.
    In Roundcube, that is the managesieve plugin. By default, the rules get saved in /Library/Server/Mail/Data/rules/[user UniqueID]/dovecot.sieve with the new Roundcube and older rules are default.sieve. Dovecot seems to look for one or the other and uses it.
    So, and I still have to read (and if anyone can answer!) since I've not looked at this since 10.8 server has first come out:  They moved the mailstor moved in ML, but does Dovecot still have sieve rules ENABLED or does that require a .conf change?
    To answer your configuration question:
    if you're comfortable with editing a text file, Roundrube is VERY simple to configure in my opinion. Everything is well commented in the settings files. Almost all of the settings are having it connect to your IMAP and SMTP server, same as an email client's settings.  And that's it, you don't need to compile anything to use it.
    You will need to setup MySQL or ProtegeSQL with it, but they have scripts that setup the tables for you, again, pretty simple.  PERSONALLY, I chose to install MySQL (they have a Mac .pkg install and a System Preference Pane for it).  I did not want to use the ProtegeSQL Apple supplies with OS X because we've all learned this lesson: who knows when they'll abandon THAT and leave us all scrambling for a solution again.
    This way, my SQL install is indepenent, ready for the next OS upgrade without wondering if Apple will take it away, or even transportable to another platform.

  • Does 10.8 server have vacation messages

    In 10.7 server, we had a great filter for vacation messages built into webmail.
    Users could configure this quite easily.
    I can't find either webmail or vacation messages in Mountain Lion Server 10.8.
    Any solutions?
    Cheers.

    OK - part two - to get managesieve plugin configured in Roundcube
    In this file:
    your path to webmail/plugins/managesieve/config.inc.php.dist  make the following changes
    // managesieve server port
    $rcmail_config['managesieve_port'] = 4190;
    $rcmail_config['managesieve_host'] = 'server.domain.com';
    // authentication method. Can be CRAM-MD5, DIGEST-MD5, PLAIN, LOGIN, EXTERNAL
    // or none. Optional, defaults to best method supported by server.
    $rcmail_config['managesieve_auth_type'] = LOGIN;
    // default contents of filters script (eg. default spam filter)
    $rcmail_config['managesieve_default'] = '/var/lib/dovecot/sieve/default.sieve';
    // The name of the script which will be used when there's no user script
    $rcmail_config['managesieve_script_name'] = '';
    // Sieve RFC says that we should use UTF-8 endcoding for mailbox names,
    // but some implementations does not covert UTF-8 to modified UTF-7.
    // Defaults to UTF7-IMAP
    $rcmail_config['managesieve_mbox_encoding'] = 'UTF-8';
    // I need this because my dovecot (with listescape plugin) uses
    // ':' delimiter, but creates folders with dot delimiter
    $rcmail_config['managesieve_replace_delimiter'] = '';
    // disabled sieve extensions (body, copy, date, editheader, encoded-character,
    // envelope, environment, ereject, fileinto, ihave, imap4flags, index,
    // mailbox, mboxmetadata, regex, reject, relational, servermetadata,
    // spamtest, spamtestplus, subaddress, vacation, variables, virustest, etc.
    // Note: not all extensions are implemented
    $rcmail_config['managesieve_disabled_extensions'] = array();
    // Enables debugging of conversation with sieve server. Logs it into <log_dir>/sieve
    $rcmail_config['managesieve_debug'] = true;
    // Script name extension used for scripts including. Dovecot uses '.sieve',
    // Cyrus uses '.siv'. Doesn't matter if you have managesieve_kolab_master disabled.
    $rcmail_config['managesieve_filename_extension'] = '.sieve';
    // List of reserved script names (without extension).
    // Scripts listed here will be not presented to the user.
    $rcmail_config['managesieve_filename_exceptions'] = array();
    In yourpathto webmail/plugins/managesieve/managesieve.php
         * Loads configuration, initializes plugin (including sieve connection)
        function managesieve_start()
           $this->load_config('config.inc.php.dist');
    If you dont change this line, it wont load the config file we changed above!
    And thats it!
    Remember that you can't test vacation rules by sending a message to yourself - it has to be a different address to be responded to  I had to read deep into the doco to find out why I wasnt triggering my vacation response!!
    Good luck from Down Under 

  • Testing sieve filter

    Hello,
    I would like to make some test with the sieve filter.
    The rule is stored in /tmp/filter :
    require ["fileinto", "reject", "vacation", "relational", "comparator-i;ascii-numeric", "regex", "envelope", "notify", "subaddress", "copy"];
    if header :contains "Subject" "{Spam?}"
    {fileinto "SPAM"; stop;}
    the command imsimta test -exp -mm -block -input=/tmp/filter gives :
    Expression: require ["fileinto", "reject", "vacation", "relational", "comparator-i;ascii-numeric", "regex", "envelope", "notify", "subaddress", "copy"];
    Expression: Expression: if header :contains "Subject" "{Spam?}"
    Expression: Expression: {fileinto "SPAM"; stop;}
    Expression: Dump: header:2000115;0 3 1 :contains 1 "Subject" 1 "{Spam?}"
    Dump: if 8 ; fileinto:2000113;0 1 1 "SPAM" ; "" stop
    Evaluation error: No message context for header test
    But when I add -message=/tmp/17.msg where /tmp/17.msg is :
    Received: from mmp-1-1.sipr-dc.ucl.ac.be ([127.0.0.1])
    by mmp.sipr-dc.ucl.ac.be (Sun Java System Messaging Server 6.2-3.04 (built Jul
    15 2005)) with SMTP id <[email protected]> for
    [email protected]; Mon, 02 Oct 2006 11:04:43 +0200 (CEST)
    Date: Mon, 02 Oct 2006 11:04:38 +0200 (CEST)
    Date-warning: Date header was inserted by mmp.sipr-dc.ucl.ac.be
    From: [email protected]
    Subject: {Spam?} test number 3
    To: [email protected]
    Message-id: <[email protected]>
    test number 3
    the command imsimta test -exp -mm -block -input=/tmp/filter -message=/tmp/17.msg gives
    15:49:33.27: Exit code = 13 (13) - IMTA__ERROPENINP, error opening file !AD for input: Permission denied
    What's wrong ?
    # imsimta version
    Sun Java(tm) System Messaging Server 6.2-3.04 (built Jul 15 2005)
    libimta.so 6.2-3.04 (built 01:32:55, Jul 15 2005)
    SunOS mmp-1-1 5.10 Generic_118855-14 i86pc i386 i86pc

    Sounds like Messaging is complaining that the file itself has wrong ownership/permissions to be read. It's either your filter file, or the message file.

  • Reason: Error in sieve filter: Unknown function/variable found: church around input line 79 [ stop; } require " f^ileinto"; if header ]

    My wife's email has been getting filled with hundereds of emails with this in them this morning. I don't see where anyone else is having this problem today, but I wanted to see if it's on iCloud's end or ours.
    Processing errors occurred during delivery:
    Recipient address: [email protected]
    Reason: Error in sieve filter: Unknown function/variable found: church around input line 79 [ stop; } require " f^ileinto"; if header ]
    Delivery processing continued in spite of these errors.
    Reporting-MTA: dns;ms21034.mac.com (tcp_intranet-daemon)
    Arrival-date: Tue, 13 Mar 2012 07:33:18 +0000 (GMT)

    My Wife and I both have an Ipad and an iPhone, I use an iMac and my wife a MacBook Pro.
    I have this problem with all my devices.
    My wife has NOT got this problem.
    We both use a [email protected] email acount.
    Just compared the settings:
    For "Incoming server" I have p03-imap.mail.me.com
    My Wife has p02-imap.mail.me.com .... and has not got this problem.
    I have setup a new rule for incoming mails (for the meantime):
    move all incoming emails from [email protected] to trash and delete it.
    Works fine for now,......until APPLE deals with the problem.
    Message was edited by: RTONLINE

  • Mail Error: Reason: Error in sieve filter

    Hello,
    Yesterday I started to receive this strange email error for every message that I send from one of my iCloud accounts (all others seem to be functioning fine).  Does anyone have any idea what might be happening?  I have done a search and nothing really comes up.  I think the system is suggesting that the @me.com account is not valid, but it clearly is.
    Many thanks!
    ERROR MESSAGE
    Message-id:
      <5D56EF844AC57D49989CB3CE9DB70D8B0B34679C@EX14MBX1A.>
    Date: Thu, 07 Mar 2013 08:40:38 +0000
    From:
    To: [email protected]>
    Subject: RE: Re:
    Processing errors occurred during delivery:
    Recipient address: [email protected]
    Reason: Error in sieve filter: Notify mailto: recipient is not a valid address
    Delivery processing continued in spite of these errors.
    Reporting-MTA: dns;ms03531.mac.com (tcp_intranet-daemon)
    Arrival-date: Thu, 07 Mar 2013 08:40:40 +0000 (GMT)
    Original-recipient: rfc822;[email protected]
    Final-recipient: rfc822;[email protected]
    Action: delivered
    Status: 2.0.0
    (Error in sieve filter: Notify mailto: recipient is not a valid address)

    Hello,
    I've the same problem since this morning.
    I read on other topic posted that it's a know problem.
    Florian

  • Vacation Message Only Working in Parts

    Hi,
    I am trying to get a vacation auto-repsonder filter working on the new 10.7.1 server webmail.  I've setup two actions.  One sends a copy of the recived email to another account, the second action replys to the sender with an out of office message.
    The first action works, the second does nothing.  Oddly it did work intiially as I have some messages in my email account from the server for the account in question.  It doesn't work now though. 
    I have tried the grey-listing fix but that didn't appear to effect it.
    Any ideas?
    Francis.

    I added the extra identity but it still is not giving the vacation message on the alias just on the original shortname. It is also a bit hard to test, as obviously it only sends one vacation message out per day as a response for a particular sender but i am always trying on the alias email address first and then as a last resort just checking with the shortname email address. I am able to send test email from various different email address's so it does give me a few options for testing.

  • Vacation Message using old/incorrect data

    I have a mail server that refuses to accept a new vacation message. The problem is worse than that because it is sending out a vacation message from over a year ago that had been disabled, even though it shows as disabled in the web interface.
    Here is what I tried to do to clear things up.
    * Turn off email and web server.
    * Remove all scripts from /var/spool/imap/dovecot/sieve-scripts/
    * Remove all scripts and vacationIndex.db from /Library/Emailrules/
    * Turn on email and web server.
    When I return to the user's vacationnotice wiki page it shows the old outgoing email rule. I cannot find where this old rule is stored. When I apply the new rule when a user sends a message to the account they initially receive two vacation replys, the correct one and the 'old' incorrect one as well. Subsequent test messages get a reply of the 'old' message repeatedly, while the new one is properly 'muted' until the following day.
    Does anyone know what I'm missing and how to find this zombie message?
    Thanks in advance.

    Nothing?
    These forums used to be pretty active with a few experts chiming in, but it seems like the enthusiastic pros have left the scene.
    Outside of Apple's mailing lists what forums are active for pro OS X Server admins? Seems like afp548 is dead, too.

  • E-mail PROBLEM:  I get this: Reason: Error in sieve filter: Too many notifys specified

    I am using a MacBook Pro and an iPhone.  I always had success in getting e-mails pushed to the phone.  Suddenly, every time I receive an e-mail, I get another one from the postmaster saying: Reason: Error in sieve filter: Too many notifys specified.
    I do receive the e-mail simultaneously.
    However, I no longer get any e-mails pushed to my iPhone.
    Anybody have any suggestions?
    Thanks!
    Rob

    Having the same issue. Started this morning. There is something at the end about Proofpoint virus protection. Not just one email. Several. They all have this at the end. Several emails from the county where I live. Got the messages but also this. Anyone know about this?
    Apparently, I got an email from my mail order prescription service at my .mac address, but didn't get it. This is what it says at the end:
    Message-id: <[email protected]>
    MIME-version: 1.0
    X-Proofpoint-Virus-Version: vendor=fsecure
    engine=2.50.10432:5.9.8327,1.0.431,0.0.0000
    definitions=2013-03-07_01:2013-03-07,2013-03-06,1970-01-01 signatures=0
    X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0
    ipscore=0 suspectscore=3 phishscore=0 bulkscore=0 adultscore=0 classifier=spam
    adjust=0 reason=mlx scancount=1 engine=6.0.2-1302030000
    definitions=main-1303070066
    X-Name-Header: [BOB] EXP Order Receipt
    X-Name-Body: [BOB] EXP Order Conf Postal
    X-Name-Footnote: [BOB] Web Footnotes
    X-Name-Footer: [BOB] EXP Footer 2
    X-Name-Cobrand: BOB
    X-Name-BrandId: 00
    X-Proofpoint-Virus-Version: vendor=fsecure
    engine=2.50.10432:5.9.8327,1.0.431,0.0.0000
    definitions=2013-03-07_01:2013-03-07,2013-03-06,1970-01-01 signatures=0
    Then another from my son's BS troop:
    Reply-to: Troop 859 EBlast
    Message-id: <[email protected]>
    MIME-version: 1.0
    X-Proofpoint-Virus-Version: vendor=fsecure
    engine=2.50.10432:5.9.8327,1.0.431,0.0.0000
    definitions=2013-03-07_01:2013-03-07,2013-03-06,1970-01-01 signatures=0
    X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0
    ipscore=0 suspectscore=10 phishscore=0 bulkscore=0 adultscore=0
    classifier=spam adjust=0 reason=mlx scancount=1 engine=6.0.2-1302030000
    definitions=main-1303070051

  • Email. Problem during delivery processing Reason: Error in sieve filter: Notify mailto:recipient is not a valid address

    Hi All, since 6:52 Uk time I have received email notifications for all emails that I have received.
    The email notification is 'Problem during delivery processing'
    The reason given 'Error in sieve filter: Notify mailto:recipient is not a valid address'
    Then 'Delivery processing continued in spite of errors'
    So Im getting all email, but a notifictions for all of them. Is this happenring to anyone else. Is it a known issue? Any help greatfully recived.
    Many thanks.

    Having the same issue. Started this morning. There is something at the end about Proofpoint virus protection. Not just one email. Several. They all have this at the end. Several emails from the county where I live. Got the messages but also this. Anyone know about this?
    Apparently, I got an email from my mail order prescription service at my .mac address, but didn't get it. This is what it says at the end:
    Message-id: <[email protected]>
    MIME-version: 1.0
    X-Proofpoint-Virus-Version: vendor=fsecure
    engine=2.50.10432:5.9.8327,1.0.431,0.0.0000
    definitions=2013-03-07_01:2013-03-07,2013-03-06,1970-01-01 signatures=0
    X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0
    ipscore=0 suspectscore=3 phishscore=0 bulkscore=0 adultscore=0 classifier=spam
    adjust=0 reason=mlx scancount=1 engine=6.0.2-1302030000
    definitions=main-1303070066
    X-Name-Header: [BOB] EXP Order Receipt
    X-Name-Body: [BOB] EXP Order Conf Postal
    X-Name-Footnote: [BOB] Web Footnotes
    X-Name-Footer: [BOB] EXP Footer 2
    X-Name-Cobrand: BOB
    X-Name-BrandId: 00
    X-Proofpoint-Virus-Version: vendor=fsecure
    engine=2.50.10432:5.9.8327,1.0.431,0.0.0000
    definitions=2013-03-07_01:2013-03-07,2013-03-06,1970-01-01 signatures=0
    Then another from my son's BS troop:
    Reply-to: Troop 859 EBlast
    Message-id: <[email protected]>
    MIME-version: 1.0
    X-Proofpoint-Virus-Version: vendor=fsecure
    engine=2.50.10432:5.9.8327,1.0.431,0.0.0000
    definitions=2013-03-07_01:2013-03-07,2013-03-06,1970-01-01 signatures=0
    X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0
    ipscore=0 suspectscore=10 phishscore=0 bulkscore=0 adultscore=0
    classifier=spam adjust=0 reason=mlx scancount=1 engine=6.0.2-1302030000
    definitions=main-1303070051

  • Mail sieve filter and Return-path problem

    I want replace return-path header for one particular user when receive email. I use only sun convergence for send mail.
    imta.cnf
    ! ims-ms
    ims-ms defragment notices 1 7 14 21 28 backoff "pt5m" "pt10m" "pt30m" "pt1h" "pt2h" "pt4h" maxjobs 2 pool IMS_POOL fileinto $U+$S@$D destinationfilter /opt/sun/comms/messaging/config/imta.filter
    ims-ms-daemon imta.filter
    require ["editheader"];
    if header :contains "from" ["[email protected]"] {
            deleteheader "Return-path";
            addheader "Return-path" "[email protected]";
    }When I send email from anonymous i want delete old Return-path and add new return-path. The problem is that i see on header the new return-path but i see the old also.
    It's possible delete the default return-path ?
    Thank's
    Giovanni

    giovanni.romaneghi wrote:
    I want replace return-path header for one particular user when receive email.Why do you want to replace the Return-Path header? What is the actual problem you are trying to solve?
    Also what is the exact version of Messaging Server that you are using (./imsimta version)?
    imta.cnf
    ! ims-ms
    ims-ms defragment notices 1 7 14 21 28 backoff "pt5m" "pt10m" "pt30m" "pt1h" "pt2h" "pt4h" maxjobs 2 pool IMS_POOL fileinto $U+$S@$D destinationfilter /opt/sun/comms/messaging/config/imta.filter
    ims-ms-daemon
    You should not use "imta.filter" as the destinationfilter file-name. imta.filter is the reserved for the MTA-wide sieve filter file-name:
    http://wikis.sun.com/display/CommSuite/Mail+Filtering+and+Access+Control#MailFilteringandAccessControl-ToCreateMTAWideFilters
    When I send email from anonymous i want delete old Return-path and add new return-path. The problem is that i see on header the new return-path but i see the old also. The "Return-Path:" header is automatically added by the MTA after the sieve filter has been evaluated which is why you get two Return-Path: headers in the resultant message.
    Regards,
    Shane.

  • Vacation message

    We are running iMS 5.2hf2.04
    Vacation messages are not working. The LDAP entries look fine.
    The message is delivered to the inbox but the reply never happens
    address rewrite looks good, I think
    ./imsimta test -rewrite [email protected]
    krallc1@ims-ms-daemon (orig [email protected], inter [email protected], host ims-ms-daemon) NOTIFY-FAILURES NOTIFY-DELAYS
    autoreply
    krallc1+scranton.edu@autoreply-daemon (orig [email protected], inter [email protected], host autoreply-daemon) NOTIFY-FAILURES NOTIFY-DELAYS
    also mail.log_current shows
    23-Sep-2005 09:37:08.68 tcp_local autoreply E 2 [email protected] rfc822;[email protected] krallc1+scranton.edu@autoreply-daemon
    23-Sep-2005 09:37:08.72 tcp_local ims-ms E 2 [email protected] rfc822;[email protected] krallc1@ims-ms-daemon
    23-Sep-2005 09:37:08.75 ims-ms D 2 [email protected] rfc822;[email protected] krallc1@ims-ms-daemon
    23-Sep-2005 09:37:09.59 autoreply D 2 [email protected] rfc822;[email protected] krallc1+scranton.edu@autoreply-daemon
    But the trace logs say
    autoreply.trc-0IN900D01SVLPQ
    WARNING: Add sender's address failed: One of the specified addresses does not comply to RFC 822

    Hi Jay!
    My system is iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)
    libimta.dll 5.2 Patch 2 (built 17:39:53, Jul 14 2004)
    Microsoft Windows 2000 version 5.0 Service Pack 4 (Build 2195).
    Everything is working fine, but I have problem with vacation replies.
    I chekd the LDAP. There is the mailDeliveryOption: autoreply in user account. But it isn't work.
    When i debug with
    imsimta test -rewrite [email protected]
    Warning - compiled configuration does not match configuration files
    -- Modification time mismatch for configuration file C:/iPlanet/Server5/msg-mail/imta/config/option.dat
    forward channel = l
    channel description =
    channel user filter =
    dest channel filter =
    source channel filter =
    channel flags #0 = BIDIRECTIONAL MULTIPLE IMMNONURGENT NOSERVICEALL
    channel flags #1 = NOSMTP DEFAULT
    channel flags #2 = COPYSENDPOST COPYWARNPOST POSTHEADONLY HEADERINC NOEXPROUTE
    channel flags #3 = NOLOGGING NOGREY NORESTRICTED RETAINSECURITYMULTIPARTS
    channel flags #4 = EIGHTBIT NOHEADERTRIM NOHEADERREAD RULES
    channel flags #5 =
    channel flags #6 = LOCALUSER REPORTHEADER
    channel flags #7 = NOSWITCHCHANNEL NOREMOTEHOST DATEFOUR DAYOFWEEK
    channel flags #8 = NODEFRAGMENT EXQUOTA REVERSE NOCONVERT_OCTET_STREAM
    channel flags #9 = NOTHURMAN INTERPRETENCODING USEINTERMEDIATE RECEIVEDFROM VALIDATELOCALSYSTEM NOTURN
    defaulthost = osiris.com osiris.com
    linelength = 1023
    channel env addr type = SOURCEROUTE
    channel hdr addr type = SOURCEROUTE
    channel official host = mail.osiris.com
    channel queue 0 name = LOCAL_POOL
    channel queue 1 name = LOCAL_POOL
    channel queue 2 name = LOCAL_POOL
    channel queue 3 name = LOCAL_POOL
    channel after params =
    channel user name =
    urgentnotices = 1 2 4 7
    normalnotices = 1 2 4 7
    nonurgentnotices = 1 2 4 7
    channel rightslist ids =
    local behavior flags = %x7
    backward channel = l
    header To: address = [email protected]
    header From: address = [email protected]
    envelope To: address = [email protected] (route (mail.osiris.com,mail.osiris.com)) (host osiris.com)
    envelope From: address = [email protected]
    name =
    mbox = user1th
    Extracted address action list:
    [email protected]
    Extracted 733 address action list:
    [email protected]
    Address list expansion:
    user1th@ims-ms-daemon
    user1th+osiris.com@autoreply-daemon
    2 expansion total.
    Expanded address:
    [email protected]
    Submitted address list:
    ims-ms
    user1th@ims-ms-daemon (orig [email protected], inter [email protected], host ims-ms-daemon) NOTIFY-FAILURES NOTIFY-DELAYS
    autoreply
    user1th+osiris.com@autoreply-daemon (orig [email protected], inter [email protected], host autoreply-daemon) NOTIFY-FAILURES NOTIFY-DELAYS
    Submitted notifications list:
    Thanks!

Maybe you are looking for

  • 'Missing plug in' still appears despite having downloaded the latest version of Java

    I'm currently attempting to access a Java applet in my browser. It tells me I have a missing plug in. After clicking the icon and finding the latest Java version, I download it and click to install. It tells me 'A newer version of Java is already ava

  • Zfs and encryption

    we are looking for a filesystem level encryption technology. At this point most of our services are on zfs. At one time I saw encryption on the roadmap for zfs features. Where does this sit now? Are there test bed versions of opensolaris where we can

  • Color labels in finder

    Maverick OS doesn't seem to have the option to color label files v.s. color tag. Is there a way to bring that back?

  • Schedule Task - Windows 2008 R2 - User Session

    I am migratiing the schedule task from windows 2003 to windows 2008 and find some of behaviour change on handling user session by Task Scheduler. I have a simple batch to call "net use" command to map a network drive for copying file to remote server

  • Ignore errors in the Operator steps

    Hi Is there a way to ignore errors in an Operator task step without checking "Ignore Errors" box located on the Definition tab of that step? So far the only way I can run it is to check that box and execute the interface by right clicking the Operato