Add more debugging information
[app-edwardng.git] / lib / App / EdwardNG.pm
index 9a01dc03458e4a19f5b6c64e2f4cf402a4951cb9..e778d6a20b70f6c065ca5a6f47b1c89a44238976 100644 (file)
@@ -105,6 +105,7 @@ sub run {
        $parser->decode_bodies(0);
        $parser->output_to_core(1);
        my $in = $parser->parse(\*STDIN);
+       debug 'Received mail from ', $in->get('From');
 
        my ($tmpl, %params);
        try {
@@ -112,6 +113,7 @@ sub run {
        } catch {
                ($tmpl, %params) = (error => message => $_)
        };
+       debug "Result is $tmpl, GnuPG said:\n", $params{message};
 
        $params{plaintext} = first_part $params{decrypted} if $params{decrypted};
 
@@ -127,7 +129,7 @@ sub run {
        my $email_unencrypted = $email->dup;
        my $mg = mg always_trust => 1;
        my $encrypt_failed = $mg->mime_signencrypt($email, $in->get('From') =~ /<(.*)>/);
-       debug 'Could not encrypt message, sending unencrypted. GnuPG said ', stringify $mg->{last_message} if $encrypt_failed;
+       debug 'Could not encrypt message, sending unencrypted. GnuPG said:', "\n", stringify $mg->{last_message} if $encrypt_failed;
        sendmail $encrypt_failed ? $email_unencrypted : $email
 }
 
@@ -166,8 +168,6 @@ App::EdwardNG - GnuPG email sign/encrypt testing bot
 
 EdwardNG is a reimplementation of the Edward reply bot referenced in L<https://emailselfdefense.fsf.org/>.
 
-It takes mail messages, checks them for PGP signatures and encryption, then replies appropriately.
-
 This module exports a single function, B<process_message>, which takes a single parameter representing the message. This parameter can be:
 
 =over
This page took 0.010066 seconds and 4 git commands to generate.