Problem Postfixadmin und Vacation

Postfix, QMail, Sendmail, Dovecot, Cyrus, Courier, Anti-Spam
AWOHille
Posts: 274
Joined: 2011-09-05 09:00
 

Problem Postfixadmin und Vacation

Post by AWOHille »

Hallo,

ich habe ein kleines Problem bei der Einrichtung von Vacation. Das Autoreply Mail enthält folgenden Text:

Code: Select all

<info#meine_domain.com@autoreply.meine_domain.com>: Command died with
    status 2: "/var/spool/vacation/vacation.pl". Command output: Can't locate
    MIME/EncWords.pm in @INC (@INC contains: /etc/perl
    /usr/local/lib/perl/5.10.1 /usr/local/share/perl/5.10.1 /usr/lib/perl5
    /usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10
    /usr/local/lib/site_perl .) at /var/spool/vacation/vacation.pl line 134.
    BEGIN failed--compilation aborted at /var/spool/vacation/vacation.pl line
    134.
Wo genau liegt das Problem bzw. was sagt mir diese Fehlermeldung?

Gruß Hille
ddm3ve
Moderator
Moderator
Posts: 1246
Joined: 2011-07-04 10:56
 

Re: Problem Postfixadmin und Vacation

Post by ddm3ve »

Dir fehlt das Perl -Modul
MIME::EncWords

perl -MCPAN -e shell bzw. http://www.cpan.org helfen dir weiter.
http://www.cpan.org/modules/INSTALL.html
Last edited by ddm3ve on 2011-10-13 00:02, edited 1 time in total.
02:32:12 21.12.2012 und dann sind Deine Probleme alle unwichtig.
AWOHille
Posts: 274
Joined: 2011-09-05 09:00
 

Re: Problem Postfixadmin und Vacation

Post by AWOHille »

Habe die entsprechenden Perl-Module nachinstalliert

Eine Frage:
Sind dies alles benötige Module?

Code: Select all

use MIME::Base64;
use MIME::EncWords qw(:all);
use Email::Valid;
use strict;
use Mail::Sender;
use Getopt::Std;
use Log::Log4perl qw(get_logger :levels);
use File::Basename; 
Last edited by AWOHille on 2011-10-13 13:40, edited 2 times in total.
ddm3ve
Moderator
Moderator
Posts: 1246
Joined: 2011-07-04 10:56
 

Re: Problem Postfixadmin und Vacation

Post by ddm3ve »

Ja, es stellt sich lediglich die Frage, welche der Module schon über das System / Distribution verfügbar sind und welche nicht.

Lässt sich aber im Zweifel per CPAN installieren / upgraden / prüfen.
02:32:12 21.12.2012 und dann sind Deine Probleme alle unwichtig.
AWOHille
Posts: 274
Joined: 2011-09-05 09:00
 

Re: Problem Postfixadmin und Vacation

Post by AWOHille »

Danke, habe das Problem gelöst bzw. die entsprechenden Module per CPAN installiert. Die Autoreply Funktion funktioniert nun tadellos.

Wie aktualisiere ich die CPAN Module?

Gruß Hille
Last edited by AWOHille on 2011-10-13 21:20, edited 1 time in total.