Page 1 of 1

Problem Postfixadmin und Vacation

Posted: 2011-10-12 23:55
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

Re: Problem Postfixadmin und Vacation

Posted: 2011-10-13 00:01
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

Re: Problem Postfixadmin und Vacation

Posted: 2011-10-13 09:12
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; 

Re: Problem Postfixadmin und Vacation

Posted: 2011-10-13 15:13
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.

Re: Problem Postfixadmin und Vacation

Posted: 2011-10-13 17:53
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