ok, turns out I am getting bounced messages... snippet below:<br><br>Delivery to the following recipient has been delayed:<br>
<br>
     <a href="mailto:rt@rt.imctv.com" target="_blank">rt@rt.#############.com</a><br>
<br>
Message will be retried for 2 more day(s)<br>
<br>
Technical details of temporary failure:<br>
The recipient server did not accept our requests to connect.<br><br>(note, replacing my domain w/ #'s in this email only... :)  )<br><br>Postfix seems to be running on the server...<br><br>rt:/etc/init.d# ./postfix status<br>

postfix is running.<br><br>On the server itself I verified things seem to be working...<div><br></div><div><span class=" argument-content"><pre><font class="Apple-style-span" face="arial, helvetica, sans-serif">echo 'hello' | mail -s "Test subject" rt
</font></pre><pre><font class="Apple-style-span" face="arial, helvetica, sans-serif"><br></font></pre><pre><font class="Apple-style-span" face="arial, helvetica, sans-serif">which created a ticket in general.  I got a CC on it, but replying sends it again into the ether.. thinking perhaps it's a port blockage perhaps on the rt server?</font></pre>
</span><br><br><div class="gmail_quote">On Tue, Apr 27, 2010 at 4:20 PM, Curtis Bruneau <span dir="ltr"><<a href="mailto:curtisb@vianet.ca" target="_blank">curtisb@vianet.ca</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204, 204, 204);padding-left:1ex">

Ideally it would be on the RT server itself. The SMTP relaying and MTA are technically separate. You can do just local deliveries on the RT server which accepts port 25 smtp traffic but think of it as the final relay destination. You would also have to set up the MTA to recognize the hostname as accepted so it doesn't try to relay it back out to relayhost. I think regardless of your $SMTPServer setting if you had RT server accepting mail you may want to set up relayhost for bounces and such.<br>


<br>
For postfix in /etc/postfix/<a href="http://main.cf" target="_blank">main.cf</a> you should see the following. The my networks is to ensure that only localhost can relay through it. This should for the most part be default already assuming the server was set up with the RT hostname.<br>


<br>
myhostname = <a href="http://rt.domain.com" target="_blank">rt.domain.com</a><br>
alias_maps = hash:/etc/aliases<br>
mydestination = <a href="http://rt.domain.com" target="_blank">rt.domain.com</a>, localhost<br>
mynetworks = <a href="http://127.0.0.0/8" target="_blank">127.0.0.0/8</a><br>
<br>
One thing to note; this is the default domain setup. If you hosted multiple email domains you'd have to look into the virtual domain settings. This is mostly likely the case on your SMTP as well so simply doing /etc/aliases may not be good enough unless your default domain is the same as the RT server.<br>


<br>
As for setting it up on your 'real' SMTP, you may be able to copy the perl script but you will most likely still require some of the perl modules from the 'make testdeps'. Then again I've never tried to do it before so I'm not really sure what dependencies it has.<br>


<br>
Chris Hall wrote:<br>
<blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204, 204, 204);padding-left:1ex"><div>
well.. none yet.  I think I see where I've mis-stepped.  the modifications to /etc/aliases needs to be ON the SMTP server, not the RT server, is that correct?  and if so, that means I need to install the rt-mailgate on the SMTP server?  If that's true, could I just copy my rt-mailgate from my bin dir on the rt server to the SMTP server, or do I really have to go through the entirety of the installation?  ...lotsa questions there, sry.<br>


<br></div><div>
On Tue, Apr 27, 2010 at 3:51 PM, Curtis Bruneau <<a href="mailto:curtisb@vianet.ca" target="_blank">curtisb@vianet.ca</a> <mailto:<a href="mailto:curtisb@vianet.ca" target="_blank">curtisb@vianet.ca</a>>> wrote:<br>


<br>
    Assuming the SMTPFrom setting isn't overriding the reply addresses<br>
    specified in the queue config queue@ queue-comment@ etc. You may<br>
    need to rebuild the alias hash with the newaliases command. Are<br>
    you getting any bounces from your smtp?<br>
<br>
    Chris Hall wrote:<br>
<br>
        ahh, nevermind, I got it...<br>
<br>
        Set($SMTPServer, '##########');<br>
        Set($SMTPFrom , 'rt@rt.#########.com');<br>
<br>
        but now, my question has evolved slightly.. email seems to be<br>
        successfully sent out, but I get the email saying "reply to<br>
        this address if you have questions, etc..." I reply to it, and<br>
        nothing seems to happen.<br>
<br>
        I've added the following lines to /etc/aliases<br>
<br>
        rt: "|/opt/rt3/bin/rt-mailgate --queue 'General' --action<br>
        correspond --url <a>http://rt.###########.com</a>"<br>
        rt-comment: "|/opt/rt3/bin/rt-mailgate --queue 'General'<br>
        --action comment --url <a>http://rt.##########.com</a>"<br>
<br>
        (obviously w/o the # signs...) but nothing seems to happen<br>
        when I reply to the email... any ideas as to why?<br>
<br>
<br>
        On Tue, Apr 27, 2010 at 3:37 PM, Curtis Bruneau<br>
        <<a href="mailto:curtisb@vianet.ca" target="_blank">curtisb@vianet.ca</a> <mailto:<a href="mailto:curtisb@vianet.ca" target="_blank">curtisb@vianet.ca</a>><br></div><div><div></div><div>
        <mailto:<a href="mailto:curtisb@vianet.ca" target="_blank">curtisb@vianet.ca</a> <mailto:<a href="mailto:curtisb@vianet.ca" target="_blank">curtisb@vianet.ca</a>>>> wrote:<br>
<br>
           You should be able to set up postfix using the parameter<br>
           'relayhost' for relaying, you can specify a different port if<br>
           needed. This would allow you to still use the sendmail<br>
        commands to<br>
           send. This is assuming you can still receive on port 25 for MX<br>
           deliveries. Otherwise you may have no choice but to set it<br>
        up on<br>
           your real smtp server.<br>
<br>
           Chris Hall wrote:<br>
<br>
               We're tightly controlling port 25 on our site here, so<br>
        using<br>
               the local method for sending email is a no go.  I read<br>
               something about installing mailgate on the smtp server<br>
        here,<br>
               but that has some people... nervous....  My boss seems to<br>
               think it should be a matter of switching a line or two<br>
        to set<br>
               a smarthost to our smtp server to make it work.  So my<br>
               question is, without dropping additional software or<br>
        whatnot<br>
               on the smtp server... how can I use an external server for<br>
               sending mail?  What's the preferred and correct<br>
        configuration<br>
               needed?<br>
<br>
<br>
                      ------------------------------------------------------------------------<br>
<br>
<br>
<br>
<br>
               Discover RT's hidden secrets with RT Essentials from<br>
        O'Reilly<br>
               Media.<br>
               Buy a copy at <a href="http://rtbook.bestpractical.com" target="_blank">http://rtbook.bestpractical.com</a><br>
<br>
<br>
<br>
<br>
<br>
</div></div></blockquote>
<br>
</blockquote></div><br><div style="display:inline"></div>
</div>