-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix: previously, would set next_hop=lmtp w/o setting q.wants=lmtp - feat: also route via LMTP for local recipients when relaying - cfg: rename check_outbound -> check_mail_from - cfg: declare check_mail_from as boolean - doc: added queue.wants & next_hop - chore: much refactoring to simplify do_qmd_response - chore: replace url.parse with new url.URL() - chore: added many tests
- Loading branch information
Showing
6 changed files
with
371 additions
and
224 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
|
||
; When set to true, and a connection has relay privileges, verify that the | ||
; MAIL FROM address is deliverable. | ||
check_outbound=true | ||
; Check that the MAIL FROM address is deliverable. | ||
check_mail_from=true | ||
|
||
; the IP address of the host running qmail_deliverable | ||
; default: host=127.0.0.1 | ||
|
@@ -11,15 +10,15 @@ host=127.0.0.1 | |
port=8998 | ||
|
||
; if mail is delivered to a host other than the qmd host (above) | ||
; set it here in URI format | ||
; set it here as a URI | ||
; next_hop=smtp://user:pass@[::127.0.0.35]:2500 | ||
; next_hop=lmtp://user:[email protected]:24 | ||
; next_hop=lmtp://10.0.5.6 | ||
|
||
; By default, relaying messages are delivered to outbound. Inbound are queued | ||
; by the first queue plugin enabled. With this option, a specific queue | ||
; can be specified for inbound recipients validated by qmd. | ||
; queue=[ outbound, smtp_forward, qmail-queue ] | ||
; queue=[ lmtp, outbound, smtp_forward, qmail-queue ] | ||
|
||
;[example.com] | ||
;host=127.0.0.10 | ||
|
Oops, something went wrong.