diff options
-rw-r--r-- | README | 2 | ||||
-rwxr-xr-x | fripost | 21 | ||||
-rwxr-xr-x | lib/Fripost/Email.pm | 5 |
3 files changed, 14 insertions, 14 deletions
@@ -1,7 +1,7 @@ These are administrative tools used by Fripost - the Free E-mail Association. Visit our website for more information: -http://fripost.org/ +https://fripost.org/ Please send patches, bug reports and comments to: skangas@skangas.se @@ -315,17 +315,6 @@ use Getopt::Long qw /:config noauto_abbrev no_ignore_case use Pod::Usage; use YAML::Syck; -use Fripost::Schema; -use Fripost::Commands::mkpass; -use Fripost::Commands::add_user; -use Fripost::Commands::search_user; -use Fripost::Commands::user_passwd; -use Fripost::Commands::add_domain; -use Fripost::Commands::search_domain; -use Fripost::Commands::add_alias; -use Fripost::Commands::search_alias; - - ## Get global command line options our $conf = LoadFile( catfile ($HOME, '.fripost.yml') ); @@ -352,6 +341,16 @@ GetOptions( 'g|goto' => \$conf->{goto}, ) or pod2usage(2); +require Fripost::Schema; +require Fripost::Commands::mkpass; +require Fripost::Commands::add_user; +require Fripost::Commands::search_user; +require Fripost::Commands::user_passwd; +require Fripost::Commands::add_domain; +require Fripost::Commands::search_domain; +require Fripost::Commands::add_alias; +require Fripost::Commands::search_alias; + ## Set the default values $conf->{server_host} //= 'ldap://127.0.0.1:389'; diff --git a/lib/Fripost/Email.pm b/lib/Fripost/Email.pm index 2e35070..552e82c 100755 --- a/lib/Fripost/Email.pm +++ b/lib/Fripost/Email.pm @@ -36,8 +36,9 @@ sub new { my ($conf, $h) = @_; my $msg = MIME::Entity->build( - From => encode('MIME-Q', 'Friposts administratörer') - . $conf->{admin_email}, + From => encode('MIME-Q', 'Friposts administratörer'). + ' <'.$conf->{admin_email}.'>', + 'Reply-To' => 'admin@fripost.org', To => $h->{To}, Subject => $h->{Subject}, Encoding => 'quoted-printable', |