<?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: sending email is slow in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670338#M50812</link>
    <description>Look at these tunings in sendmail.cf&lt;BR /&gt;&lt;BR /&gt;# load average at which we just queue messages&lt;BR /&gt;O QueueLA=20&lt;BR /&gt;&lt;BR /&gt;# load average at which we refuse connections&lt;BR /&gt;O RefuseLA=22&lt;BR /&gt;&lt;BR /&gt;# maximum number of children we allow at one time&lt;BR /&gt;#O MaxDaemonChildren=12&lt;BR /&gt;&lt;BR /&gt;# maximum number of new connections per second&lt;BR /&gt;#O ConnectionRateThrottle=3&lt;BR /&gt;O ConnectionRateThrottle=1&lt;BR /&gt;&lt;BR /&gt;It's useful to have the sendmail book (a.k.a. the Bat Book) by Costales w/ Allman.  Though we could explain in detail the interactions and implementation of the tunes - the book is very useful (and detailed).&lt;BR /&gt;&lt;BR /&gt;A couple of other pointers that help performance:&lt;BR /&gt;&lt;BR /&gt;1) make sure to separate &lt;BR /&gt;/var/mail&lt;BR /&gt;/var/spool/mqueue&lt;BR /&gt;&lt;BR /&gt;and any other filesystems that service mail (we use /var/spool/popper for POP3).  We've got all of the filesystems striped across a fair number of platters.&lt;BR /&gt;&lt;BR /&gt;2) *(Best with sendmail 8.11) if you're getting lots of spam, consider subscribing to RBL mail-abuse.org or ORBZ &lt;A href="http://www.orbz.org/." target="_blank"&gt;http://www.orbz.org/.&lt;/A&gt;  Both of these organizations help you kill bad SMTP connections long before you get into the expensive delivery process (writing the data to disk).&lt;BR /&gt;&lt;BR /&gt;3) Use the virtusertable or virtuser-domains (sendmail 8.11) to limit the cost misdelivered mail or probes from spammers.&lt;BR /&gt;&lt;BR /&gt;4) If mis-delivery or connection rate is a big problem - think about splitting initial mail service by front-ending the boxes that check mail with a box that recieves mail from the Internet (see mailertable).  To scale, you can split the "check" boxes or the frond-end boxes (or both).&lt;BR /&gt;</description>
    <pubDate>Fri, 22 Feb 2002 20:58:36 GMT</pubDate>
    <dc:creator>Christopher Caldwell</dc:creator>
    <dc:date>2002-02-22T20:58:36Z</dc:date>
    <item>
      <title>sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670335#M50809</link>
      <description>Hello everyone,&lt;BR /&gt;I have an issue with my mailserver. When the end user trys to send email though the mailserver the connection is very slow. But when they try to get email it goes though really fast. But it is from a specific location not from all areas. To me it sounds like some kind of networking problem since it is from one location. But the networking team insist that is is something in the mailserver. I was wondering if there are any settings in HPUX or sendmail 8.8.3 that limit the number of smpt connections that are comming in. Any ideas?&lt;BR /&gt;&lt;BR /&gt;Richard</description>
      <pubDate>Fri, 22 Feb 2002 20:45:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670335#M50809</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2002-02-22T20:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670336#M50810</link>
      <description>the only thing i could find in the sendmail.cf file was&lt;BR /&gt;&lt;BR /&gt;DaemonPortOptions=options &lt;BR /&gt;[O] Set server SMTP options. The options are key=value pairs. Known keys are: &lt;BR /&gt;&lt;BR /&gt;Port Name/number of listening port (defaults to "smtp")&lt;BR /&gt;Addr Address mask (defaults INADDR_ANY)&lt;BR /&gt;Family Address family (defaults to INET)&lt;BR /&gt;Listen Size of listen queue (defaults to 10)&lt;BR /&gt;SndBufSize Size of TCP send buffer&lt;BR /&gt;RcvBufSize Size of TCP receive buffer&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;___&lt;BR /&gt;&lt;BR /&gt;But I have not messed with it yet. Am i going down the right track?&lt;BR /&gt;&lt;BR /&gt;Richard&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Feb 2002 20:46:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670336#M50810</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2002-02-22T20:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670337#M50811</link>
      <description>What happens when you telnet to the mail server?&lt;BR /&gt;&lt;BR /&gt;telnet mailserver.com 25&lt;BR /&gt;&lt;BR /&gt;helo yourdomain.com&lt;BR /&gt;&lt;BR /&gt;mail from:youremail&lt;BR /&gt;&lt;BR /&gt;rcpt to:someoneelsesemail&lt;BR /&gt;&lt;BR /&gt;data&lt;BR /&gt;Test&lt;BR /&gt;.&lt;BR /&gt;&lt;BR /&gt;quit&lt;BR /&gt;&lt;BR /&gt;See how fast that goes, and see if there is a difference.&lt;BR /&gt;&lt;BR /&gt;We can go from there.&lt;BR /&gt;&lt;BR /&gt;GL,&lt;BR /&gt;C</description>
      <pubDate>Fri, 22 Feb 2002 20:51:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670337#M50811</guid>
      <dc:creator>Craig Rants</dc:creator>
      <dc:date>2002-02-22T20:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670338#M50812</link>
      <description>Look at these tunings in sendmail.cf&lt;BR /&gt;&lt;BR /&gt;# load average at which we just queue messages&lt;BR /&gt;O QueueLA=20&lt;BR /&gt;&lt;BR /&gt;# load average at which we refuse connections&lt;BR /&gt;O RefuseLA=22&lt;BR /&gt;&lt;BR /&gt;# maximum number of children we allow at one time&lt;BR /&gt;#O MaxDaemonChildren=12&lt;BR /&gt;&lt;BR /&gt;# maximum number of new connections per second&lt;BR /&gt;#O ConnectionRateThrottle=3&lt;BR /&gt;O ConnectionRateThrottle=1&lt;BR /&gt;&lt;BR /&gt;It's useful to have the sendmail book (a.k.a. the Bat Book) by Costales w/ Allman.  Though we could explain in detail the interactions and implementation of the tunes - the book is very useful (and detailed).&lt;BR /&gt;&lt;BR /&gt;A couple of other pointers that help performance:&lt;BR /&gt;&lt;BR /&gt;1) make sure to separate &lt;BR /&gt;/var/mail&lt;BR /&gt;/var/spool/mqueue&lt;BR /&gt;&lt;BR /&gt;and any other filesystems that service mail (we use /var/spool/popper for POP3).  We've got all of the filesystems striped across a fair number of platters.&lt;BR /&gt;&lt;BR /&gt;2) *(Best with sendmail 8.11) if you're getting lots of spam, consider subscribing to RBL mail-abuse.org or ORBZ &lt;A href="http://www.orbz.org/." target="_blank"&gt;http://www.orbz.org/.&lt;/A&gt;  Both of these organizations help you kill bad SMTP connections long before you get into the expensive delivery process (writing the data to disk).&lt;BR /&gt;&lt;BR /&gt;3) Use the virtusertable or virtuser-domains (sendmail 8.11) to limit the cost misdelivered mail or probes from spammers.&lt;BR /&gt;&lt;BR /&gt;4) If mis-delivery or connection rate is a big problem - think about splitting initial mail service by front-ending the boxes that check mail with a box that recieves mail from the Internet (see mailertable).  To scale, you can split the "check" boxes or the frond-end boxes (or both).&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Feb 2002 20:58:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670338#M50812</guid>
      <dc:creator>Christopher Caldwell</dc:creator>
      <dc:date>2002-02-22T20:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670339#M50813</link>
      <description>Richard,&lt;BR /&gt;&lt;BR /&gt; Check these two fields out:&lt;BR /&gt;&lt;BR /&gt;# maximum number of children we allow at one time&lt;BR /&gt;O MaxDaemonChildren=12&lt;BR /&gt;&lt;BR /&gt;# maximum number of new connections per second&lt;BR /&gt;O ConnectionRateThrottle=3&lt;BR /&gt;&lt;BR /&gt;The first limits number of simultaneous host connections (inbound &amp;amp; outbound combined - I believe).&lt;BR /&gt;&lt;BR /&gt;Second limits rate of connections.&lt;BR /&gt;&lt;BR /&gt;May be these users are "flooding" you with outbound at the same time - but pick up mail whenever.&lt;BR /&gt;&lt;BR /&gt;Also I've seen this problem being related to DNS - usually reverse lookup.&lt;BR /&gt;&lt;BR /&gt;I would suspect the latter as it appears subnet specific.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
      <pubDate>Fri, 22 Feb 2002 21:04:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670339#M50813</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2002-02-22T21:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670340#M50814</link>
      <description>To expand on the DNS topic - if I remember correctly, by default, the receiving SMTP server ALWAYS performs both forward &amp;amp; reverse DNS lookups. &lt;BR /&gt;&lt;BR /&gt;Therefore first step I would take is to nslookup the host &amp;amp; IP  in question &amp;amp; see what results you get as well as response time.</description>
      <pubDate>Fri, 22 Feb 2002 21:19:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670340#M50814</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2002-02-22T21:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670341#M50815</link>
      <description>The connection to port 25 via telnet is slow too. But it is just the connection part once we get a promt everything is fast. maybe a dns issue? If it is a dns issue why would it be location specific? &lt;BR /&gt;&lt;BR /&gt;richard</description>
      <pubDate>Fri, 22 Feb 2002 21:22:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670341#M50815</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2002-02-22T21:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670342#M50816</link>
      <description>nslookup comes back fine and fast,&lt;BR /&gt;&lt;BR /&gt;Richard</description>
      <pubDate>Fri, 22 Feb 2002 21:33:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670342#M50816</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2002-02-22T21:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670343#M50817</link>
      <description>Richard&lt;BR /&gt;&lt;BR /&gt;Sorry - host specific is what I meant.&lt;BR /&gt;&lt;BR /&gt;Is is coming from another domain in your network? If so is their DNS server setup correctly?&lt;BR /&gt;&lt;BR /&gt;Do an nslookup by hostname - from the mail server - to determine IP. Then nslookup the IP. &lt;BR /&gt;&lt;BR /&gt;Could possibly be a primary server timeout causing secondary DNS servers to service the request - hence the additional time required to connect.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Feb 2002 21:33:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670343#M50817</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2002-02-22T21:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670344#M50818</link>
      <description>In addition, make sure this option is set&lt;BR /&gt;&lt;BR /&gt;O Timeout.ident=0s&lt;BR /&gt;&lt;BR /&gt;It causes user delays, especially if users are behind firewalls.  By default (i.e. if you still see ident commented out) the timeout is 30 seconds.  Most folks don't actually use identd, anyway.</description>
      <pubDate>Fri, 22 Feb 2002 21:35:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670344#M50818</guid>
      <dc:creator>Christopher Caldwell</dc:creator>
      <dc:date>2002-02-22T21:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670345#M50819</link>
      <description>if telnet is slow, do a traceroute to the server and see how fast/slow and how many hops. show that output to your network guys and see what they say.&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;mark</description>
      <pubDate>Fri, 22 Feb 2002 21:46:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670345#M50819</guid>
      <dc:creator>Mark Greene_1</dc:creator>
      <dc:date>2002-02-22T21:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670346#M50820</link>
      <description>Richard,&lt;BR /&gt;&lt;BR /&gt; If forward &amp;amp; reverse lookups to that specific host are OK &amp;amp; no other users see the problem then I would suspect, as you, a network problem. Sure doesn't sound like a config or load problem. You certainly can check that with top &amp;amp; ps -ef | grep send commands - but you'd think  other users would have reported such.&lt;BR /&gt;&lt;BR /&gt;What do large packet size pings to that host produce?&lt;BR /&gt;&lt;BR /&gt;Jeff</description>
      <pubDate>Fri, 22 Feb 2002 21:52:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670346#M50820</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2002-02-22T21:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670347#M50821</link>
      <description>whooo hooo !! IT WORKS !!&lt;BR /&gt;I made all theese changes &lt;BR /&gt;O Timeout.ident=0s&lt;BR /&gt;&lt;BR /&gt;# load average at which we just queue messages &lt;BR /&gt;O QueueLA=20 &lt;BR /&gt;&lt;BR /&gt;# load average at which we refuse connections &lt;BR /&gt;O RefuseLA=22 &lt;BR /&gt;&lt;BR /&gt;# maximum number of children we allow at one time &lt;BR /&gt;#O MaxDaemonChildren=12 &lt;BR /&gt;&lt;BR /&gt;# maximum number of new connections per second &lt;BR /&gt; O ConnectionRateThrottle=1 &lt;BR /&gt;&lt;BR /&gt;and now it works faster then ever !! 10s for everyone!!&lt;BR /&gt;AND IF YOU GUYS CAN TELL ME WHY THEESE CHANGES MADE THIGNS GO FASTER .. ANOUTHER ROUND OF 10S &lt;BR /&gt;&lt;BR /&gt;Richard</description>
      <pubDate>Fri, 22 Feb 2002 21:53:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670347#M50821</guid>
      <dc:creator>someone_4</dc:creator>
      <dc:date>2002-02-22T21:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670348#M50822</link>
      <description>Richard,&lt;BR /&gt;&lt;BR /&gt; I suspect the MaxDaemonChildren is what did the trick. Commenting it out sets NO limit by default. This lets the server spawn as many connections as it can handle( Note though this can be problematic if this server gets hit by a spammer).  If you had a low value in there. connections will be on an as-serviced basis &amp;amp; if you have  some large mail deliveries to slow receiving servers - this could affect internal connections. This is why Christopher is 100% correct RE the value of seperate inbound/internal &amp;amp; outbound servers&lt;BR /&gt;&lt;BR /&gt; Also you could probably set the Connectio nIRateThrottle up to at least 3 &amp;amp; higher if you have fairly robust system. This just basically  sets the limit of connections per second. I've used 5 on a G-class w/o a problem. Again - commented out is NO limit.&lt;BR /&gt;&lt;BR /&gt; The "LA" settings are load limts whereby when the server values are reached the system will stop:&lt;BR /&gt;&lt;BR /&gt; a) accepting connections for  RefuseLA&lt;BR /&gt; b) Accept connections but only queue them up for QueueLA&lt;BR /&gt;&lt;BR /&gt;BTW - these are  a little high in my humble opinion. I would set QueueLA to 6-10 &amp;amp; RefuseLA to 11-14.  &lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
      <pubDate>Fri, 22 Feb 2002 22:20:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670348#M50822</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2002-02-22T22:20:12Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670349#M50823</link>
      <description>&lt;BR /&gt;This option controls the use of identd when you get inbound connections:&lt;BR /&gt;O Timeout.ident=0s &lt;BR /&gt;Effectively turns of identd.  You don't need it; (you probably weren't using it anyway); causes hangs on firewalls.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;These options are use to meter/throttle sendmail to control load and resource utilization.&lt;BR /&gt;&lt;BR /&gt;# load average at which we just queue messages &lt;BR /&gt;O QueueLA=20 &lt;BR /&gt;When the LA is over 20, just write messages to the queue, don't try to send them.  This probably didn't do anything for you.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# load average at which we refuse connections &lt;BR /&gt;O RefuseLA=22 &lt;BR /&gt;Don't even accept a connection if the LA is over 22.  This probably didn't do anything for you.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# maximum number of children we allow at one time &lt;BR /&gt;#O MaxDaemonChildren=12 &lt;BR /&gt;This option isn't in effect (it's comment out).  If it was commented in, it would say don't run any more than 12 sendmail processes (in addition to the initial sendmail process).&lt;BR /&gt;Generally used in queue processing.  Generally not used in sendmail.cf (can result in a DOS attack); better to use throttle options.  Default is unlimited (actually maxproc).&lt;BR /&gt;&lt;BR /&gt;# maximum number of new connections per second &lt;BR /&gt;O ConnectionRateThrottle=1 &lt;BR /&gt;&lt;BR /&gt;Slows down the socket acceptance rate (and consequently the fork another sendmail rate).  Used to slow incoming connections.  No limit if default (not present or not commented)&lt;BR /&gt;or negative.  If positive, sendmail won't accept any more than num connections per second.  In your case, num is 1.&lt;BR /&gt;&lt;BR /&gt;This option probably didn't help you too much.</description>
      <pubDate>Fri, 22 Feb 2002 22:24:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670349#M50823</guid>
      <dc:creator>Christopher Caldwell</dc:creator>
      <dc:date>2002-02-22T22:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670350#M50824</link>
      <description>Richard,&lt;BR /&gt;&lt;BR /&gt; I suspect the MaxDaemonChildren is what did the trick. Commenting it out sets NO limit by default. This lets the server spawn as many connections as it can handle( Note though this can be problematic if this server gets hit by a spammer).  If you had a low value in there. connections will be on an as-serviced basis &amp;amp; if you have  some large mail deliveries to slow receiving servers - this could affect internal connections. This is why Christopher is 100% correct RE the value of seperate inbound/internal &amp;amp; outbound servers&lt;BR /&gt;&lt;BR /&gt; Also you could probably set the &lt;BR /&gt;Connectio nIRateThrottle up to at least 3 &amp;amp; higher if you have fairly robust system. This just basically  sets the limit of connections per second. I've used 5 on a G-class w/o a problem. Again - commented ut is NO limit.&lt;BR /&gt;&lt;BR /&gt; The "LA" settings are load limts whereby when the server values are reached the system will stop:&lt;BR /&gt;&lt;BR /&gt; a) accepting connections for  RefuseLA&lt;BR /&gt; b) Accept connections but only queue the data up for QueueLA&lt;BR /&gt;&lt;BR /&gt;BTW - these are  a little high in my humble opinion. I would set QueueLA to 6-10 &amp;amp; RefuseLA to 11-14.  &lt;BR /&gt;&lt;BR /&gt;Also I agree that the O'reilly "Bat Book" is absolutely essential.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
      <pubDate>Fri, 22 Feb 2002 22:24:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670350#M50824</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2002-02-22T22:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: sending email is slow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670351#M50825</link>
      <description>BTW, if you want to see which option fixed your problem, put the tune back to when your system was slow and change the tunes 1 at a time until you see which one makes a difference. &lt;BR /&gt;&lt;BR /&gt;(The tunes we gave don't have to be used together, each one does something different).</description>
      <pubDate>Mon, 25 Feb 2002 13:40:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sending-email-is-slow/m-p/2670351#M50825</guid>
      <dc:creator>Christopher Caldwell</dc:creator>
      <dc:date>2002-02-25T13:40:59Z</dc:date>
    </item>
  </channel>
</rss>

