<?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 mail server in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/configuring-mail-server/m-p/4556557#M649723</link>
    <description>Hi madhudeepan,&lt;BR /&gt;&lt;BR /&gt;- Modify file /etc/sendmail.cf&lt;BR /&gt;&lt;BR /&gt;Change de line:&lt;BR /&gt;&lt;BR /&gt;#Dj$w.Foo.COM&lt;BR /&gt;&lt;BR /&gt;Dj$w.yourdomain.com&lt;BR /&gt;&lt;BR /&gt;- Modify file /etc/rc.config.d/mailservs&lt;BR /&gt;&lt;BR /&gt;export SENDMAIL_SERVER=1&lt;BR /&gt;&lt;BR /&gt;- Execute:&lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/sendmail start&lt;BR /&gt;&lt;BR /&gt;Rgs,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 31 Dec 2009 08:03:33 GMT</pubDate>
    <dc:creator>rariasn</dc:creator>
    <dc:date>2009-12-31T08:03:33Z</dc:date>
    <item>
      <title>configuring mail server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/configuring-mail-server/m-p/4556555#M649721</link>
      <description>how to configure the mail server..&lt;BR /&gt;&lt;BR /&gt;i need to  send alerts from syslog to my local mail id.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 30 Dec 2009 09:36:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/configuring-mail-server/m-p/4556555#M649721</guid>
      <dc:creator>madhudeepan</dc:creator>
      <dc:date>2009-12-30T09:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: configuring mail server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/configuring-mail-server/m-p/4556556#M649722</link>
      <description>First check sendmail process is running or not.&lt;BR /&gt;ps -ef|grep sendmail&lt;BR /&gt;&lt;BR /&gt;or start &lt;BR /&gt;/sbin/init.d/sendmail start&lt;BR /&gt;&lt;BR /&gt;and add your relay server in sendmail.conf file&lt;BR /&gt;use elm to try to send email from any user.&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/en/5991-6611/ch02s01.html" target="_blank"&gt;http://www.docs.hp.com/en/5991-6611/ch02s01.html&lt;/A&gt;&lt;BR /&gt;see the link also</description>
      <pubDate>Thu, 31 Dec 2009 02:55:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/configuring-mail-server/m-p/4556556#M649722</guid>
      <dc:creator>Rohak</dc:creator>
      <dc:date>2009-12-31T02:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: configuring mail server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/configuring-mail-server/m-p/4556557#M649723</link>
      <description>Hi madhudeepan,&lt;BR /&gt;&lt;BR /&gt;- Modify file /etc/sendmail.cf&lt;BR /&gt;&lt;BR /&gt;Change de line:&lt;BR /&gt;&lt;BR /&gt;#Dj$w.Foo.COM&lt;BR /&gt;&lt;BR /&gt;Dj$w.yourdomain.com&lt;BR /&gt;&lt;BR /&gt;- Modify file /etc/rc.config.d/mailservs&lt;BR /&gt;&lt;BR /&gt;export SENDMAIL_SERVER=1&lt;BR /&gt;&lt;BR /&gt;- Execute:&lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/sendmail start&lt;BR /&gt;&lt;BR /&gt;Rgs,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Dec 2009 08:03:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/configuring-mail-server/m-p/4556557#M649723</guid>
      <dc:creator>rariasn</dc:creator>
      <dc:date>2009-12-31T08:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: configuring mail server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/configuring-mail-server/m-p/4556558#M649724</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;- Modify /etc/syslog.conf file&lt;BR /&gt;&lt;BR /&gt;For example, the configuration file:&lt;BR /&gt;&lt;BR /&gt;kern,mark.debug   /dev/console&lt;BR /&gt;mail.debug        /var/adm/syslog/mail.log&lt;BR /&gt;*.info;mail.none  /var/adm/syslog/syslog.log&lt;BR /&gt;*.alert           /dev/console&lt;BR /&gt;*.alert           root,eric,kridle&lt;BR /&gt;*.emerg           *&lt;BR /&gt;*.emerg           @admin&lt;BR /&gt;&lt;BR /&gt;logs all kernel messages and 20 minute marks onto the system console, all mail system messages to /var/adm/syslog/mail.log, and all messages at info and above, except mail messages, to the file      /var/adm/syslog/syslog.log.  Messages at alert and above are logged to the console and to the users root, eric, and kridle if they are loggedin.  emerg messages are written to all logged-in users' terminals, and forwarded to the host admin.&lt;BR /&gt;&lt;BR /&gt;- To make syslogd, re-read its configuration file, send it a HANGUP signal:&lt;BR /&gt;&lt;BR /&gt;   kill -HUP `cat /var/run/syslog.pid`&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgs,&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Dec 2009 10:01:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/configuring-mail-server/m-p/4556558#M649724</guid>
      <dc:creator>rariasn</dc:creator>
      <dc:date>2009-12-31T10:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: configuring mail server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/configuring-mail-server/m-p/4556559#M649725</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;I need to forward the mails to my company mail id ,, not to root or user who logged in..&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 02 Jan 2010 06:32:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/configuring-mail-server/m-p/4556559#M649725</guid>
      <dc:creator>madhudeepan</dc:creator>
      <dc:date>2010-01-02T06:32:42Z</dc:date>
    </item>
  </channel>
</rss>

