diff options
author | Gianni Ceccarelli <gianni.ceccarelli@broadbean.com> | 2023-06-22 09:48:56 +0100 |
---|---|---|
committer | Gianni Ceccarelli <gianni.ceccarelli@broadbean.com> | 2023-06-22 09:48:56 +0100 |
commit | 48ed3eb0891e689b27ce1b0842e560007f6742cb (patch) | |
tree | 3a2e02dd607b4da31c9f0a6b75bb6bee1fc01137 /scripts/claws-password | |
parent | move account section mangling (diff) | |
download | config-clawsmail-48ed3eb0891e689b27ce1b0842e560007f6742cb.tar.gz config-clawsmail-48ed3eb0891e689b27ce1b0842e560007f6742cb.tar.bz2 config-clawsmail-48ed3eb0891e689b27ce1b0842e560007f6742cb.zip |
add claws-password script
Diffstat (limited to 'scripts/claws-password')
-rwxr-xr-x | scripts/claws-password | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/claws-password b/scripts/claws-password new file mode 100755 index 0000000..e84a104 --- /dev/null +++ b/scripts/claws-password @@ -0,0 +1,8 @@ +#!/usr/bin/env perl +use v5.26; +use strict; +use warnings; +use Config::ClawsMail; + +my $c = Config::ClawsMail->new(); +say $c->password_store->password_for(@ARGV); |