[Bug 317563] Re: caff doesn't send emails via SMTP with my From address

2014-04-03 Thread Bug Watch Updater
** Changed in: signing-party (Debian)
   Status: Won't Fix = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/317563

Title:
  caff doesn't send emails via SMTP with my From address

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/signing-party/+bug/317563/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 317563] Re: caff doesn't send emails via SMTP with my From address

2014-03-28 Thread Bug Watch Updater
** Changed in: signing-party (Debian)
   Status: New = Won't Fix

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/317563

Title:
  caff doesn't send emails via SMTP with my From address

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/signing-party/+bug/317563/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 317563] Re: caff doesn't send emails via SMTP with my From address

2014-02-09 Thread Carsten Agger
Caff does not send mails out of the box. I'm using postfix as my MTA.
Works with mutt.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/317563

Title:
  caff doesn't send emails via SMTP with my From address

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/signing-party/+bug/317563/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 317563] Re: caff doesn't send emails via SMTP with my From address

2011-10-16 Thread Daniel Hahler
** Changed in: signing-party (Ubuntu)
   Status: New = Triaged

** Changed in: signing-party (Ubuntu)
   Importance: Undecided = Wishlist

** Bug watch added: Debian Bug tracker #592787
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=592787

** Also affects: signing-party (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=592787
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/317563

Title:
  caff doesn't send emails via SMTP with my From address

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/signing-party/+bug/317563/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 317563] Re: caff doesn't send emails via SMTP with my From address

2011-10-16 Thread Daniel Hahler
It appears to use $USER@$(cat /etc/mailname) in the end, so you might
fix it by using your mail hosts' name in /etc/mailname.

Basically, you want to pass the -f option to sendmail, so the following might 
work:
$CONFIG{'mailer-send'} =  [ 'sendmail', '-fu...@example.com' ];

It says however:
Setting this option is strongly discouraged.  Fix your local MTA
   
  instead.

If I remember correctly, it's easy with e.g. nullmailer, but does not
work as easy with dma (which is the current default MTA in Ubuntu).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/317563

Title:
  caff doesn't send emails via SMTP with my From address

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/signing-party/+bug/317563/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 317563] Re: caff doesn't send emails via SMTP with my From address

2011-10-16 Thread Bug Watch Updater
** Changed in: signing-party (Debian)
   Status: Unknown = New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/317563

Title:
  caff doesn't send emails via SMTP with my From address

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/signing-party/+bug/317563/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 317563] Re: caff doesn't send emails via SMTP with my From address

2011-10-16 Thread Daniel Hahler
For what it's worth, I am back to just using nullmailer, which relays to
my own real MTA.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/317563

Title:
  caff doesn't send emails via SMTP with my From address

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/signing-party/+bug/317563/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 317563] Re: caff doesn't send emails via SMTP with my From address

2009-02-21 Thread Thijs Kinkhorst
It uses the specified email and owner variables for the From: header.
However, the Envelope FROM in the SMTP session is decided by the
Mail::Internet perl module that caff uses.

I think it should be possible to use the MailFrom option from this perl
module to specify the envelope from.

It's a design decision from caff to make it agnostic of which email
transport you use. Otherwise we would have to reimplement SMTP and
sendmail and ... functionality in this script, and in the next script,
etc. Adding such an option to caff is hence not 'simple' as it
complicates the codebase, rather than abstracting the sending away to
the tools that are good at sending email.

-- 
caff doesn't send emails via SMTP with my From address
https://bugs.launchpad.net/bugs/317563
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 317563] Re: caff doesn't send emails via SMTP with my From address

2009-02-21 Thread Muelli
Hi :)

Thijs Kinkhorst wrote:
 It uses the specified email and owner variables for the From: header.
 However, the Envelope FROM in the SMTP session is decided by the
 Mail::Internet perl module that caff uses.
 
 I think it should be possible to use the MailFrom option from this perl
 module to specify the envelope from.
 
I'm happy to try your suggestion, if you provide one :)

-- 
caff doesn't send emails via SMTP with my From address
https://bugs.launchpad.net/bugs/317563
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs