Configure the tracking of login failures to POP3 and IMAP accounts.
juggernaut --task=lfd:tracking:login
Option |
Value | Default | Description |
---|---|---|---|
--LT_POP3D |
<0-180> | 0 | Block POP3 logins if greater than LT_POP3D times per hour per account per IP address. This is a temporary block for the rest of the hour, then the IP address is unblocked. To disable this option set to 0. |
--LT_IMAPD |
<0-180> | 0 | Block IMAP logins if greater than LT_IMAPD times per hour per account per IP address. This is a temporary block for the rest of the hour, then the IP address is unblocked. To disable this option set to 0. |
--LT_SKIPPERMBLOCK |
<1|0> | 0 | Do not Permanently block IP addresses blocked via LT_POP3D or LT_IMAPD tracking. |
--default |
<yes> | Reset all settings to their default values. | |
--default_option |
<option> | Reset a specific setting to its default value. | |
--restart |
<yes> | Restart the service after saving settings. |
// enable LT_POP3D tracking
juggernaut --task=lfd:tracking:login --LT_POP3D=80 --restart=yes
// reset LT_POP3D back to default
juggernaut --task=lfd:tracking:login --default_option=LT_POP3D --restart=yes
// reset all settings back to default
juggernaut --task=lfd:tracking:login --default=yes --restart=yes