<?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: how to send a mail to all users in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-send-a-mail-to-all-users/m-p/3880222#M25586</link>
    <description>Thanks SEP, and sory for repling late.&lt;BR /&gt;&lt;BR /&gt;ok what I understand is I have to create a file, and past the code in the file and execute it ..ok&lt;BR /&gt;say&lt;BR /&gt;# vi mail.sh&lt;BR /&gt;while read -r recipeint&lt;BR /&gt;do&lt;BR /&gt;mail -s "service warning" $recipient&lt;BR /&gt;done &amp;lt; list&lt;BR /&gt;&lt;BR /&gt;then &lt;BR /&gt;# ./mail.sh&lt;BR /&gt;right ?&lt;BR /&gt;now here I wana ask you that wahts "list" and "recepeint" .. &lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
    <pubDate>Thu, 31 May 2007 05:46:34 GMT</pubDate>
    <dc:creator>Maaz</dc:creator>
    <dc:date>2007-05-31T05:46:34Z</dc:date>
    <item>
      <title>how to send a mail to all users</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-send-a-mail-to-all-users/m-p/3880218#M25582</link>
      <description>MTA: Sendmail 8.x&lt;BR /&gt;&lt;BR /&gt;I wana send a mail to all users that have email account.. is it possible ? how ?.&lt;BR /&gt;Please help. &lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
      <pubDate>Sat, 14 Oct 2006 09:11:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-send-a-mail-to-all-users/m-p/3880218#M25582</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2006-10-14T09:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: how to send a mail to all users</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-send-a-mail-to-all-users/m-p/3880219#M25583</link>
      <description>Here is howto - &lt;A href="http://www.sendmail.org/faq/section4.html#4.21" target="_blank"&gt;http://www.sendmail.org/faq/section4.html#4.21&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;cheers,&lt;BR /&gt;ivan</description>
      <pubDate>Sat, 14 Oct 2006 09:17:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-send-a-mail-to-all-users/m-p/3880219#M25583</guid>
      <dc:creator>Ivan Krastev</dc:creator>
      <dc:date>2006-10-14T09:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to send a mail to all users</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-send-a-mail-to-all-users/m-p/3880220#M25584</link>
      <description>nice help ;)&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Maaz</description>
      <pubDate>Sun, 15 Oct 2006 09:06:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-send-a-mail-to-all-users/m-p/3880220#M25584</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2006-10-15T09:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to send a mail to all users</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-send-a-mail-to-all-users/m-p/3880221#M25585</link>
      <description>Shalom Maaz,&lt;BR /&gt;&lt;BR /&gt;This solution is likely to blow up on any server that has number of recienets limited. This is a common anti-spam measure so that if a spammer finds a way to queue his/her junk, the server doesn't send it because spammers are greedy and want to send to 10000 recipients.&lt;BR /&gt;&lt;BR /&gt;You may find it more practical to create a user list based on /etc/mail/virtusertable and use a for loop&lt;BR /&gt;&lt;BR /&gt;while read -r recipeint&lt;BR /&gt;do&lt;BR /&gt;    mail -s "service warning" $recipient&lt;BR /&gt;done &amp;lt; list&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Sun, 15 Oct 2006 11:35:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-send-a-mail-to-all-users/m-p/3880221#M25585</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-10-15T11:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to send a mail to all users</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-send-a-mail-to-all-users/m-p/3880222#M25586</link>
      <description>Thanks SEP, and sory for repling late.&lt;BR /&gt;&lt;BR /&gt;ok what I understand is I have to create a file, and past the code in the file and execute it ..ok&lt;BR /&gt;say&lt;BR /&gt;# vi mail.sh&lt;BR /&gt;while read -r recipeint&lt;BR /&gt;do&lt;BR /&gt;mail -s "service warning" $recipient&lt;BR /&gt;done &amp;lt; list&lt;BR /&gt;&lt;BR /&gt;then &lt;BR /&gt;# ./mail.sh&lt;BR /&gt;right ?&lt;BR /&gt;now here I wana ask you that wahts "list" and "recepeint" .. &lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
      <pubDate>Thu, 31 May 2007 05:46:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-send-a-mail-to-all-users/m-p/3880222#M25586</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2007-05-31T05:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: how to send a mail to all users</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-send-a-mail-to-all-users/m-p/3880223#M25587</link>
      <description>&amp;gt;&amp;gt;&amp;gt; now here I wana ask you that wahts "list" and "recepeint" ..&lt;BR /&gt;&lt;BR /&gt;list is a file with the lists of mail accounts, and recipient is "one" account on each loop.</description>
      <pubDate>Thu, 31 May 2007 14:02:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-send-a-mail-to-all-users/m-p/3880223#M25587</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2007-05-31T14:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to send a mail to all users</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-send-a-mail-to-all-users/m-p/3880224#M25588</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Script looks good to me. Do make sure the part that sends the mail works right before running the script.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 31 May 2007 14:12:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-send-a-mail-to-all-users/m-p/3880224#M25588</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2007-05-31T14:12:57Z</dc:date>
    </item>
  </channel>
</rss>

