<?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: Sendmail 8.13.3 problem in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-8-13-3-problem/m-p/3540152#M223085</link>
    <description>RunAsUser option should only be set in submit.cf, not in sendmail.cf.&lt;BR /&gt;&lt;BR /&gt;sendmail.cf is for incoming email. It operates on /var/spool/mqueue directory. This directory is writable by root only, so if you make sendmail run as smmsp it won't be able to write to it.</description>
    <pubDate>Mon, 09 May 2005 21:49:45 GMT</pubDate>
    <dc:creator>Ermin Borovac</dc:creator>
    <dc:date>2005-05-09T21:49:45Z</dc:date>
    <item>
      <title>Sendmail 8.13.3 problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-8-13-3-problem/m-p/3540146#M223079</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;I have upgraded sendmail, with the almost new 8.13.3 version from HP.&lt;BR /&gt;The reason for the upgrade was the presence of the "milter" library, that lets us the ClamAV antivirus from e-mail on the server.&lt;BR /&gt;Everything seemed to work fine (for example with elm or through POP server), except when I tried to send myself an attachment through the mpack utility:&lt;BR /&gt;&lt;BR /&gt;enrico@gissi 70 &amp;gt; mpack -s "Just a test" Document.doc enrico&lt;BR /&gt;WARNING: RunAsUser for MSP ignored, check group ids (egid=6, want=25)&lt;BR /&gt;can not chdir(/var/spool/clientmqueue/): Permission denied&lt;BR /&gt;Program mode requires special privileges, e.g., root or TrustedUser.&lt;BR /&gt;&lt;BR /&gt;This seems to be a problem with user and/or group IDs, but I really don't understand why, since:&lt;BR /&gt;- user and group smmsp have been created&lt;BR /&gt;- the /var/spool/clientmqueue dir is of user smmsp:smmsp with permits drwxrwx---&lt;BR /&gt;- the option "RunAsUser", set to "smmsp", is present in the sendmail.cf and submit.cf files&lt;BR /&gt;&lt;BR /&gt;Can anybody please help me ?&lt;BR /&gt;&lt;BR /&gt;Thank you&lt;BR /&gt;&lt;BR /&gt;Enrico</description>
      <pubDate>Mon, 09 May 2005 03:35:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-8-13-3-problem/m-p/3540146#M223079</guid>
      <dc:creator>enrico.nic</dc:creator>
      <dc:date>2005-05-09T03:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Sendmail 8.13.3 problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-8-13-3-problem/m-p/3540147#M223080</link>
      <description>Hi Enrico,&lt;BR /&gt;&lt;BR /&gt;Could you post &lt;BR /&gt;# ll /usr/bin/sendmail&lt;BR /&gt;&lt;BR /&gt;I believe it should be &lt;BR /&gt;-r-sr-sr-t   1 root       smmsp        831488 Oct 15  2004 sendmail&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Mon, 09 May 2005 03:56:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-8-13-3-problem/m-p/3540147#M223080</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2005-05-09T03:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: Sendmail 8.13.3 problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-8-13-3-problem/m-p/3540148#M223081</link>
      <description>Trying&lt;BR /&gt;&lt;BR /&gt;enrico@gissi 57 &amp;gt; ll /usr/sbin/sendmail&lt;BR /&gt;lrwxr-xr-x   1 root       sys             39 mag  3 14:45 /usr/sbin/sendmail@ -&amp;gt; /usr/contrib/sendmail/usr/sbin/sendmail&lt;BR /&gt;enrico@gissi 58 &amp;gt; ll /usr/contrib/sendmail/usr/sbin/sendmail&lt;BR /&gt;-r-xr-sr-x   1 root       mail       1826816 feb 17 19:53 /usr/contrib/sendmail/usr/sbin/sendmail&lt;BR /&gt;&lt;BR /&gt;Permits should be changed ? Even in all files in /var/mail ?&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Mon, 09 May 2005 05:21:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-8-13-3-problem/m-p/3540148#M223081</guid>
      <dc:creator>enrico.nic</dc:creator>
      <dc:date>2005-05-09T05:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: Sendmail 8.13.3 problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-8-13-3-problem/m-p/3540149#M223082</link>
      <description>permission on the usr/sbin/sendmail should be changed. In you case it looks like the sendmail binary is in /usr/contrib/sendmail/usr/sbin/sendmail&lt;BR /&gt;&lt;BR /&gt;# cd /usr/contrib/sendmail/usr/sbin/&lt;BR /&gt;# chown root:smmsp sendmail&lt;BR /&gt;# chmod 2555 sendmail&lt;BR /&gt;# /etc/init.d/sendmail stop&lt;BR /&gt;# /etc/init.d/sendmail start&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Robert-Jan&lt;BR /&gt;&lt;BR /&gt;Ps. did you compile this version yourself ?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=SMAIL813" target="_blank"&gt;http://www.software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=SMAIL813&lt;/A&gt;</description>
      <pubDate>Mon, 09 May 2005 06:01:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-8-13-3-problem/m-p/3540149#M223082</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2005-05-09T06:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Sendmail 8.13.3 problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-8-13-3-problem/m-p/3540150#M223083</link>
      <description>I've changed the permits on sendmail, "RunAsUser=smmsp" has been set in sendmail.cf: sendmail seems to start correctly, but I find in /var/adm/mail.log&lt;BR /&gt;&lt;BR /&gt;May  9 15:47:10 gissi sm-mta[14526]: j49DlAIk014526: SYSERR(root): collect: Cann&lt;BR /&gt;ot write ./dfj49DlAIk014526 (bfcommit, uid=2500, gid=25): Permission denied&lt;BR /&gt;May  9 15:47:10 gissi sm-mta[14526]: j49DlAIk014526: from=&lt;EBNICOLIS&gt;&lt;/EBNICOLIS&gt;it&amp;gt;, size=1757, class=0, nrcpts=1, proto=ESMTP, daemon=MTA, relay=mnaxp [10.0.0.&lt;BR /&gt;13]&lt;BR /&gt;&lt;BR /&gt;at the first message arrived on the server.&lt;BR /&gt;&lt;BR /&gt;Yes, this is the version taken from the HP software.hp.com website: the installation procedure didn't set the permits to the smmsp user.&lt;BR /&gt;&lt;BR /&gt;Any other clue ?&lt;BR /&gt;&lt;BR /&gt;Thank you&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 09 May 2005 08:54:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-8-13-3-problem/m-p/3540150#M223083</guid>
      <dc:creator>enrico.nic</dc:creator>
      <dc:date>2005-05-09T08:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: Sendmail 8.13.3 problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-8-13-3-problem/m-p/3540151#M223084</link>
      <description>Cann&lt;BR /&gt;ot write ./dfj49DlAIk014526 (bfcommit, uid=2500, gid=25): Permission denied&lt;BR /&gt;May 9 15:47:10 gissi sm-mta[14526]: &lt;BR /&gt;&lt;BR /&gt;You may have a permission or space problem on /var/spool/mqueue&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 09 May 2005 09:09:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-8-13-3-problem/m-p/3540151#M223084</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-05-09T09:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: Sendmail 8.13.3 problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-8-13-3-problem/m-p/3540152#M223085</link>
      <description>RunAsUser option should only be set in submit.cf, not in sendmail.cf.&lt;BR /&gt;&lt;BR /&gt;sendmail.cf is for incoming email. It operates on /var/spool/mqueue directory. This directory is writable by root only, so if you make sendmail run as smmsp it won't be able to write to it.</description>
      <pubDate>Mon, 09 May 2005 21:49:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sendmail-8-13-3-problem/m-p/3540152#M223085</guid>
      <dc:creator>Ermin Borovac</dc:creator>
      <dc:date>2005-05-09T21:49:45Z</dc:date>
    </item>
  </channel>
</rss>

