Open avinash-ghadshi opened 1 year ago
Read the postfix doc please: https://www.postfix.org/MILTER_README.html
Maybe something like that:
func (s *Session) Header(name string, value string, m *milter.Modifier) (milter.Response, error) {
if s.queueId == "" {
s.queueId = m.Macros["i"] + ":"
}
Postfix seems to wait DATA step to create the queue_id The macros i in Postfix is the queue_id
Hi emersion,
Is there any way to get Postfix QID in Milter?
When I send mail using sendmail I get below log in postfix mail log
I want C8D33E07DCF in Milter Function. Please help!