Difference between revisions of "Configuring Postfix for use with Mailgate"

From Request Tracker Wiki
Jump to navigation Jump to search
(Created page with "==Edit /etc/alias== Mailgate can receive piped emails through ''/etc/alias''. Edit ''/etc/alias'' with entries for your queue names: helpdesk: "|/usr/bin/rt-mailgate --queue he...")
 
m (3 revisions imported)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
==Edit /etc/alias==
{{Delete}}
Mailgate can receive piped emails through ''/etc/alias''.
 
Edit ''/etc/alias'' with entries for your queue names:
helpdesk: "|/usr/bin/rt-mailgate --queue helpdesk --action correspond --url http://rt.domain.com/rt"
helpdesk-comment: "|/usr/bin/rt-mailgate --queue helpdesk --action comment --url http://rt.domain.com/rt"
office: "|/usr/bin/rt-mailgate --queue office --action correspond --url http://rt.domain.com/rt"
office-comment: "|/usr/bin/rt-mailgate --queue office --action comment --url http://rt.domain.com/rt"
support: "|/usr/bin/rt-mailgate --queue support --action correspond --url http://rt.domain.com/rt"
support-comment: "|/usr/bin/rt-mailgate --queue support --action comment --url http://rt.domain.com/rt"
infra: "|/usr/bin/rt-mailgate --queue infra --action correspond --url http://rt.domain.com/rt"
infra-comment: "|/usr/bin/rt-mailgate --queue infra --action comment --url http://rt.domain.com/rt"
 
Run ''newaliases'' to create the new aliases.db file for postfix.
Reload postfix - ''service postfix reload'' - ''/etc/init.d/postfix reload''
 
==Configure Apache==
Edit your entry for ''RT'' to allow connections from your IP:
 
# Limit mail gateway access to localhost by default
<Location /rt/REST/1.0/NoAuth>
    Order Allow,Deny
    Allow from 127.0.0.1
    Allow from 10.10.10.220 (whatever your machine's IP is)
</Location>

Latest revision as of 16:03, 6 April 2016