<div dir="ltr">Thanks David.  You must have used a different syntax because I wasn't able to get your suggestion to work (and I'm not familiar enough with that file to figure it out on my own).<div><br></div><div>Maybe somebody else on this list has a suggestion for changing /usr/local/sbin/<a href="http://vacation.pl">vacation.pl</a> to ensure that the reply-to address doesn't get incorrectly changed when using the vacation message and SRS encoding.  Perhaps the default settings in BlueOnyx aren't honoring the appropriate SRS encoding??? (I'm grasping for solutions, to be honest).</div><div><br></div><div>If it would help others on the list, here's a section of the <a href="http://vacation.pl">vacation.pl</a> file which likely contains the item which needs to be changed--I just don't know "to what":</div><div><br></div><div>---------------</div><div><br></div>







<p class="">{</p>
<p class=""><br></p>
<p class="">    #if    (/^From:\s*(.+)/)        { $from = $1;       }</p>
<p class="">    if    (/^From\s+(\S+)/)        { $from = $1;       }</p>
<p class="">    elsif (/^Reply-To:\s*(.+)/)    { $replyto = $1;    }</p>
<p class="">    elsif (/^Sender:\s*(.+)/)       { $sender = $1;     }</p>
<p class="">    elsif (/^Return-path:\s*(.+)/)  { $returnpath = $1; }</p>
<p class="">    elsif (/^Precedence:\s*(.+)/)   { $precedence = $1; }</p>
<p class="">    elsif (/^\tfor\s+(\S+)/)        { $for = $1;        }</p>
<p class="">    #elsif (/^$crlf/)                { goto breakloop    }</p>
<p class="">    elsif (/^$crlf/)                { last;             }</p>
<p class=""><br></p>
<div>} </div><div><br></div><div>-----------------</div><div><br></div><div>Thanks,</div><div><br></div><div>Jeff</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Jun 28, 2015 at 8:01 AM, David Thacker <span dir="ltr"><<a href="mailto:David@thackernet.com" target="_blank">David@thackernet.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Greetings Jeff,<br>
<br>
I faced this same issue back in November, see BlueOnyx:16496<br>
<br>
I did resolve it at the time by editing <a href="http://vacation.pl" rel="noreferrer" target="_blank">vacation.pl</a>. Here's the sad part: it seems like I did not save that modified copy anywhere except on the server, nor did I seem to document the changes anywhere except in that modified file, and now I see the modified <a href="http://vacation.pl" rel="noreferrer" target="_blank">vacation.pl</a> was overwritten on June 16th!<br>
<br>
I *think* I just ended up making a change like this:<br>
<br>
elsif ($returnpath)  { $sendto = $returnpath;  }<br>
<br>
to<br>
<br>
elsif ($returnpath)  { $sendto = $sender;  }<br>
<br>
but I can't be sure without working through it and testing again.<br>
<br>
I do remember that the basic problem was that the reply was going to the Return-Path but the return path is not valid on the encoded emails.<br>
<br>
Regards,<br>
<br>
David Thacker<br>
<br>
<br>
_______________________________________________<br>
Blueonyx mailing list<br>
<a href="mailto:Blueonyx@mail.blueonyx.it">Blueonyx@mail.blueonyx.it</a><br>
<a href="http://mail.blueonyx.it/mailman/listinfo/blueonyx" rel="noreferrer" target="_blank">http://mail.blueonyx.it/mailman/listinfo/blueonyx</a><br>
</blockquote></div><br></div>