<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: configuring catch all in sendmail in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/configuring-catch-all-in-sendmail/m-p/3528370#M17192</link>
    <description>You could probably write a script that scans the catch all mbox and then splits out messages based on the from address ...&lt;BR /&gt;&lt;BR /&gt;How good are you with perl/python?&lt;BR /&gt;&lt;BR /&gt;You might even be able to use procmail on the incoming messages to split them out to individual users.&lt;BR /&gt;&lt;BR /&gt;Thats a lot of work considering you all ready have a mail server setup.  Wouldn't it be easier and cheaper to just reconfigure sendmail change your MX record to your inhouse server and then pay for a backup mail service?&lt;BR /&gt;&lt;BR /&gt;I have used quite a few backup mail services from different vendors, I recommend lanechange.net ( they are canadian and they use qmail which makes them good choices in my books, plus they have been really reliable in the past )&lt;BR /&gt;&lt;BR /&gt;It may save you the headache of lost mail, or strange side effects of a home made solution.&lt;BR /&gt;&lt;BR /&gt;--Dave</description>
    <pubDate>Wed, 20 Apr 2005 10:34:26 GMT</pubDate>
    <dc:creator>Dave Falloon</dc:creator>
    <dc:date>2005-04-20T10:34:26Z</dc:date>
    <item>
      <title>configuring catch all in sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-linux/configuring-catch-all-in-sendmail/m-p/3528369#M17191</link>
      <description>Hi friends,&lt;BR /&gt;&lt;BR /&gt;first of all, I need a fair advice from you all, is using catch-all account worth now a days? I believe it's not, due to heavy loads of spam coming inside through it.&lt;BR /&gt;&lt;BR /&gt;one of my customer have it's email services hosted by an MSP/ISP, and have a linux server on it's own premises to regularly download incoming mails from hosting server to local server by using fetchmail in daemon mode, on every 2 minutes. now, because for every bunch of new pop IDs to be added to it's domain by MSP, it has to pay an amount to MSP.the customer don't want to pay extra amount now, but wants to use catch-all account for new users, means, he will have some local e-mail IDs which do not have any pop ID on MSP's hosting server, and any mail sent to those IDs from outside will be caught by catch-all account. now, the trouble for me is, how I can configure the local server's sendmail daemon to distribute the incoming mails on catch-all account to the appropriate local user's ID? is this possible or not?&lt;BR /&gt;&lt;BR /&gt;thanks in advance.</description>
      <pubDate>Wed, 20 Apr 2005 02:11:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/configuring-catch-all-in-sendmail/m-p/3528369#M17191</guid>
      <dc:creator>kcpant</dc:creator>
      <dc:date>2005-04-20T02:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: configuring catch all in sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-linux/configuring-catch-all-in-sendmail/m-p/3528370#M17192</link>
      <description>You could probably write a script that scans the catch all mbox and then splits out messages based on the from address ...&lt;BR /&gt;&lt;BR /&gt;How good are you with perl/python?&lt;BR /&gt;&lt;BR /&gt;You might even be able to use procmail on the incoming messages to split them out to individual users.&lt;BR /&gt;&lt;BR /&gt;Thats a lot of work considering you all ready have a mail server setup.  Wouldn't it be easier and cheaper to just reconfigure sendmail change your MX record to your inhouse server and then pay for a backup mail service?&lt;BR /&gt;&lt;BR /&gt;I have used quite a few backup mail services from different vendors, I recommend lanechange.net ( they are canadian and they use qmail which makes them good choices in my books, plus they have been really reliable in the past )&lt;BR /&gt;&lt;BR /&gt;It may save you the headache of lost mail, or strange side effects of a home made solution.&lt;BR /&gt;&lt;BR /&gt;--Dave</description>
      <pubDate>Wed, 20 Apr 2005 10:34:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/configuring-catch-all-in-sendmail/m-p/3528370#M17192</guid>
      <dc:creator>Dave Falloon</dc:creator>
      <dc:date>2005-04-20T10:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: configuring catch all in sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-linux/configuring-catch-all-in-sendmail/m-p/3528371#M17193</link>
      <description>there are existing routines to do this, infact I think fetchmail has the ability to duplex/multiplex a mailbox.</description>
      <pubDate>Wed, 20 Apr 2005 11:32:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/configuring-catch-all-in-sendmail/m-p/3528371#M17193</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-04-20T11:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: configuring catch all in sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-linux/configuring-catch-all-in-sendmail/m-p/3528372#M17194</link>
      <description>There are lots of ways to handle this situation.  I set up my servers to only accept mal for authorizied id's. This rejects thousands of spam messages with user id not found messages.&lt;BR /&gt;&lt;BR /&gt;this is the better way to go because it gets bad addressed dropped from spam lists.&lt;BR /&gt;&lt;BR /&gt;Critical files:&lt;BR /&gt;&lt;BR /&gt;/etc/mail/access # database of bad addresses&lt;BR /&gt;/etc/mail/virtusertable # address database.&lt;BR /&gt;/etc/mail/genericstable # address database.&lt;BR /&gt;&lt;BR /&gt;Set this up and run the buildmail script on &lt;A href="http://www.hpux.ws" target="_blank"&gt;http://www.hpux.ws&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;That script builds the sendmail database and teaches you how to use this database to accomplish more.&lt;BR /&gt;&lt;BR /&gt;More info at &lt;A href="http://www.sendmail.org" target="_blank"&gt;http://www.sendmail.org&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 20 Apr 2005 21:44:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/configuring-catch-all-in-sendmail/m-p/3528372#M17194</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-04-20T21:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: configuring catch all in sendmail</title>
      <link>https://community.hpe.com/t5/operating-system-linux/configuring-catch-all-in-sendmail/m-p/3528373#M17195</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;thanks for reply ( infact, I'm returning to this thread from a long time). BUt I'm not very clear about the process you told me. can anybody tell me in a simpler language how I can distribute the mails recieved on catch-all account to appropriate local user's mailboxes?&lt;BR /&gt;&lt;BR /&gt;thanks in advance.</description>
      <pubDate>Tue, 17 May 2005 00:53:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/configuring-catch-all-in-sendmail/m-p/3528373#M17195</guid>
      <dc:creator>kcpant</dc:creator>
      <dc:date>2005-05-17T00:53:26Z</dc:date>
    </item>
  </channel>
</rss>

