[Catalyst] Sending E-Mails

2008-10-02 Thread goetz
Hallo catalyst friends, I created a simple form for contact informations ( using email, FormFu ). When I use Catalysts built-in HTTP server receiving e-mails from this form works fine. As soon as I run the app using FastCGI and Apache no emails will be send. At the moment I really

AW: [Catalyst] Sending E-Mails

2008-10-02 Thread Hartmaier Alexander
Would be great if you had told us how you're sending the mails. Catalyst::View::Email? Regards, Alex -Ursprüngliche Nachricht- Von: goetz [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 02. Oktober 2008 12:32 An: The elegant MVC web framework Betreff: [Catalyst] Sending E-Mails Hallo

Re: [Catalyst] Sending E-Mails

2008-10-02 Thread Bogdan Lucaciu
On Thursday 02 October 2008 13:32:24 goetz wrote: I created a simple form for contact informations ( using email,   FormFu ). When I use Catalysts built-in HTTP server receiving e-mails from this   form works fine. As soon as I run the app using  FastCGI and Apache no emails will be   send.

Re: AW: [Catalyst] Sending E-Mails

2008-10-02 Thread goetz
I running Debian and installed: apt-get install postfix dovecot-imapd dovecot-pop3d policyd-weight in the root controller I have the methods: sub kontakt_email : Local FormConfig { my ( $self, $c ) = @_; my $form = $c-stash-{form}; if ($form-submitted_and_valid) {

Re: AW: [Catalyst] Sending E-Mails

2008-10-02 Thread goetz
I use the email plugin: use Catalyst qw/ -Debug ConfigLoader Static::Simple StackTrace Prototype Email /; Am 02.10.2008 um 13:41 schrieb Moritz Onken: Am 02.10.2008 um 13:30 schrieb goetz: sub send_email :

AW: AW: [Catalyst] Sending E-Mails

2008-10-02 Thread Hartmaier Alexander
Plugin::Email is deprecated, use View::Email instead. Regards, Alex -Ursprüngliche Nachricht- Von: goetz [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 02. Oktober 2008 14:26 An: The elegant MVC web framework Betreff: Re: AW: [Catalyst] Sending E-Mails Thanks for the hint. But nothing