<?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: Setting Up Email Printers in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-up-email-printers/m-p/2820917#M580848</link>
    <description>jorge,&lt;BR /&gt;&lt;BR /&gt;I think you should be able to create your own model file. Copy an existing one to a different name and go for it.&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
    <pubDate>Tue, 08 Oct 2002 13:13:39 GMT</pubDate>
    <dc:creator>harry d brown jr</dc:creator>
    <dc:date>2002-10-08T13:13:39Z</dc:date>
    <item>
      <title>Setting Up Email Printers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-up-email-printers/m-p/2820916#M580847</link>
      <description>Is it possible to setup printers to do email as output. Has anyone done this before?</description>
      <pubDate>Tue, 08 Oct 2002 12:43:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-up-email-printers/m-p/2820916#M580847</guid>
      <dc:creator>Jorge Chinchilla</dc:creator>
      <dc:date>2002-10-08T12:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Setting Up Email Printers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-up-email-printers/m-p/2820917#M580848</link>
      <description>jorge,&lt;BR /&gt;&lt;BR /&gt;I think you should be able to create your own model file. Copy an existing one to a different name and go for it.&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Tue, 08 Oct 2002 13:13:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-up-email-printers/m-p/2820917#M580848</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-10-08T13:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: Setting Up Email Printers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-up-email-printers/m-p/2820918#M580849</link>
      <description>I JUST HAD TO TRY IT!&lt;BR /&gt;&lt;BR /&gt;THis is the model file I created (myemail model file):&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I set up the LOCAL printer with a special device of /dev/null&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;# lp interface for emailing&lt;BR /&gt;#&lt;BR /&gt;#=======================================================================#&lt;BR /&gt;# OPTIONS RECOGNIZED: ( none )                                          #&lt;BR /&gt;#=======================================================================#&lt;BR /&gt;#########################################################################&lt;BR /&gt;PATH="/usr/bin:/usr/lib"&lt;BR /&gt;export PATH&lt;BR /&gt;&lt;BR /&gt;# Print the standard header&lt;BR /&gt;&lt;BR /&gt;name=$2&lt;BR /&gt;user=`pwget -n $2 | line | cut -d: -f5`&lt;BR /&gt;&lt;BR /&gt;# The remaining arguments are files&lt;BR /&gt;&lt;BR /&gt;shift; shift; shift; shift; shift&lt;BR /&gt;files="$*"&lt;BR /&gt;&lt;BR /&gt;# Print the spooled files&lt;BR /&gt;&lt;BR /&gt;for file in $files&lt;BR /&gt;do&lt;BR /&gt;        uuencode $file $file.txt | mailx -m -s "print mail from $name - $user" hbrown@paychex.com&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;exit 0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;And the damn thing worked!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Tue, 08 Oct 2002 13:36:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-up-email-printers/m-p/2820918#M580849</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-10-08T13:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Setting Up Email Printers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-up-email-printers/m-p/2820919#M580850</link>
      <description>Harry I tried your script but I have not gotten an email with the data. Am I missing something?</description>
      <pubDate>Tue, 08 Oct 2002 17:01:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-up-email-printers/m-p/2820919#M580850</guid>
      <dc:creator>Jorge Chinchilla</dc:creator>
      <dc:date>2002-10-08T17:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Setting Up Email Printers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-up-email-printers/m-p/2820920#M580851</link>
      <description>Jorge,&lt;BR /&gt;&lt;BR /&gt;You first have to make sure you can email from your server to yourself. Of course replace the hbrown (AT) paychex.com with your email address.&lt;BR /&gt;&lt;BR /&gt;So from the unix prompt on that server try this to see if mail can move from your server to your mail server:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;uuencode /etc/hosts hosts.txt | mailx -m -s "host file" JORGESemail@where_ever.com&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Tue, 08 Oct 2002 23:17:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-up-email-printers/m-p/2820920#M580851</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-10-08T23:17:57Z</dc:date>
    </item>
    <item>
      <title>Re: Setting Up Email Printers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/setting-up-email-printers/m-p/2820921#M580852</link>
      <description>Jorge, &lt;BR /&gt;&lt;BR /&gt;Any luck??&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Wed, 09 Oct 2002 10:48:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/setting-up-email-printers/m-p/2820921#M580852</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-10-09T10:48:48Z</dc:date>
    </item>
  </channel>
</rss>

