File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -1454,7 +1454,9 @@ smimea()
14541454 while (<>)
14551455 {
14561456 print("$1\n"), last if /emailAddress\s*=\s*(\S+)/;
1457+ print("$1\n"), last if /email\s*:\s*(\S+)/;
14571458 print("$1\n"), last if /SmtpUTF8Mailbox\s*:[^:]*:\s*(\S+)/;
1459+ print("$1\n"), last if /CN\s*=\s*(\S+@\S+)$/;
14581460 }
14591461 while (<>) {}
14601462 ' ` "
@@ -1504,8 +1506,10 @@ smimea_check()
15041506 use warnings;
15051507 while (<>)
15061508 {
1507- print("$1\n"), last if /emailAddress = (\S+)/;
1509+ print("$1\n"), last if /emailAddress\s*=\s*(\S+)/;
1510+ print("$1\n"), last if /email\s*:\s*(\S+)/;
15081511 print("$1\n"), last if /SmtpUTF8Mailbox\s*:[^:]*:\s*(\S+)/;
1512+ print("$1\n"), last if /CN\s*=\s*(\S+@\S+)$/;
15091513 }
15101514 while (<>) {}
15111515 ' ` "
You can’t perform that action at this time.
0 commit comments