<html>
<body>
At 23:46 07/03/2003, you wrote:<br>
<blockquote type=cite class=cite cite>Hello,<br><br>
The other day I upgraded from 4.11-x to 4.13-3. As expected,
Julian's<br>
upgrade script simplified the process. However, I noticed several<br>
reports had been replaced. While replacing the originals with the<br>
*.rpmnew files, I figured there must be a better way to do it than
&quot;mv<br>
filename.rpmnew filename&quot; ; rm filename.rpmnew&quot; for each file.
</blockquote><br>
It only puts in an rpmnew if you have modified or otherwise changed the
original file (loading it into an editor and saving it unchanged will
modify the datestamp, which is enough).<br><br>
<blockquote type=cite class=cite cite>There must be a way to do all
*.rpmnew files in a directory with a short<br>
shell script or compound command. Can someone give me a hand with
this?<br>
It would only be usefuly for files or reports I haven't changed,
but<br>
could potentially save me a lot of keyboard
tapping.</blockquote><br><br>
<pre>&nbsp; for NEW in *.rpmnew
&nbsp; do
&nbsp;&nbsp;&nbsp; echo $NEW ...
&nbsp;&nbsp;&nbsp; F=`echo $NEW | sed -e 's/\.rpmnew//'`
&nbsp;&nbsp;&nbsp; [ -f $F ] &amp;&amp; mv -f $F ${F}.rpmold
&nbsp;&nbsp;&nbsp; mv -f $NEW $F
&nbsp; done
&nbsp; exit



</pre><blockquote type=cite class=cite cite>Thanks in advance! <br><br>
Sincerely,<br>
Nathan Johanson<br>
nathan@tcpnetworks.net<br><br>
<br>
-----Original Message-----<br>
From: Julian Field
[<a href="mailto:mailscanner@ECS.SOTON.AC.UK" eudora="autourl">mailto:mailscanner@ECS.SOTON.AC.UK</a>]
<br>
Sent: Friday, March 07, 2003 4:22 AM<br>
To: MAILSCANNER@JISCMAIL.AC.UK<br>
Subject: Re: MailScanner and Horde/IMP<br><br>
<br>
At 23:23 07/03/2003, you wrote:<br>
&gt;Hi,<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I installed MailScanner on
my RedHat 7.3 box running Horde/IMP<br>
cvs<br>
&gt;version.<br>
&gt;When I send mails through Outlook or Eudora , the mails get scanned
by<br>
&gt;MailScanner, does both Anti-Virus and Anti-Spam checks.<br>
&gt;But when I send through Horde/IMP mailscanner does not get
executed.<br>
The<br>
&gt;mails goes without a scan via sendmail.<br>
&gt;<br>
&gt;Why is this happening?<br>
&gt;<br>
&gt;My horde configuration conf.php<br>
&gt;<br>
&gt;$conf['mailer']['type'] = 'sendmail';<br>
&gt;$conf['mailer']['params'] = array();<br>
&gt;&nbsp; $conf['mailer']['params'] = array('sendmail_path' =&gt;<br>
'/usr/sbin/sendmail');<br><br>
You either need to upgrade to a more recent version of sendmail, or
else<br>
set this instead of your 3 lines above:<br><br>
$conf['mailer']['type'] = 'smtp';<br>
$conf['mailer']['params'] = array();<br>
$conf['mailer']['params'] = array('host' =&gt; 'localhost');<br><br>
This will force IMP to talk SMTP to the host it is running on,
which<br>
will<br>
get all its mail scanned.<br>
--<br>
Julian Field<br>
<a href="http://www.mailscanner.info/" eudora="autourl">www.MailScanner.info</a><br>
MailScanner thanks transtec Computers for their
support</blockquote></body>
<br>
<div>-- </div>
<div>Julian Field</div>
<div><a href="http://www.mailscanner.info/" EUDORA=AUTOURL>www.MailScanner.info</a></div>
<div>Professional Support Services at
<a href="http://www.mailscanner.biz/" EUDORA=AUTOURL>www.MailScanner.biz</a></div>
MailScanner thanks transtec Computers for their support
</html>