diff options
author | Kali Kaneko <kali@leap.se> | 2013-12-17 15:57:48 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2013-12-18 12:06:55 -0400 |
commit | edf47444232c9e3637e2ad71bdd5ffa8cdcc8480 (patch) | |
tree | 44c7398f166dc5198332ff6497ba2735c08b6859 /src/leap/bitmask/util | |
parent | ac55fee7ef10b5e760d72b0a98ef5dd6925fe72e (diff) |
add repair mailbox utility
Diffstat (limited to 'src/leap/bitmask/util')
-rw-r--r-- | src/leap/bitmask/util/leap_argparse.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/leap/bitmask/util/leap_argparse.py b/src/leap/bitmask/util/leap_argparse.py index e8a9fda9..00192247 100644 --- a/src/leap/bitmask/util/leap_argparse.py +++ b/src/leap/bitmask/util/leap_argparse.py @@ -51,6 +51,12 @@ Launches Bitmask""", epilog=epilog) 'searching') parser.add_argument('-V', '--version', action="store_true", help='Displays Bitmask version and exits') + parser.add_argument('-r', '--repair-mailboxes', metavar="user@provider", + nargs='?', + action="store", dest="acct_to_repair", + help='Repair mailboxes for a given account. ' + 'Use when upgrading versions after a schema ' + 'change.') # Not in use, we might want to reintroduce them. #parser.add_argument('-i', '--no-provider-checks', |