Modify

Ticket #1292 (closed defect: worksforme)

Opened 10 months ago

Last modified 10 months ago

from field in mail is missing although configured

Reported by: lava Owned by: dark
Priority: trivial Milestone:
Component: Frontend Version: 2.0
Keywords: Cc:

Description

Configuration:

config.mail_envelope_from = "lqfbsupport@domain.com"
config.mail_from = "LiquidFeedback"
config.mail_reply_to = "lqfbsupport@domain.com"

Mails received:

From: LiquidFeedback <>
Reply-To: lqfbsupport@domain.com

config.mail_envelope_from gets lost somewhere?

Attachments

Change History

comment:1 Changed 10 months ago by jbe

  • Status changed from new to closed
  • Resolution set to worksforme

The "Envelope From" is actually the "bounce address", which is passed to sendmail using the "-f" option. It is not part of the e-mail headers, even though some mail servers add it to the headers.

See  http://en.wikipedia.org/wiki/Envelope_sender for more information about this topic.

The "From:" line of the headers is only set via the config.mail_from option. To include a name and an actual e-mail address in the "From:" line of the e-mail header, use the following setting:

config.mail_from = {
  name = "LiquidFeedback",
  address = "liquidfeedback@example.com"
}

This will be clarified in the example file of the next LiquidFeedback Frontend release:
 http://www.public-software-group.org/mercurial/liquid_feedback_frontend/rev/795eea4eff96

View

Add a comment

Modify Ticket

Action
as closed
The resolution will be deleted. Next status will be 'reopened'
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.