diff options
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/fetchmail.h b/fetchmail.h index dbc386d4..b1b37d05 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -29,11 +29,12 @@ #endif /* preauthentication types */ -#define A_PASSWORD 0 /* password or inline authentication */ -#define A_KERBEROS_V4 1 /* preauthenticate w/ Kerberos V4 */ -#define A_KERBEROS_V5 2 /* preauthenticate w/ Kerberos V5 */ -#define A_GSSAPI 3 /* preauthenticate with GSSAPI */ -#define A_SSH 4 /* preauthentication at session level */ +#define A_ANY 0 /* use the first method that works */ +#define A_PASSWORD 1 /* password or inline authentication */ +#define A_KERBEROS_V4 2 /* preauthenticate w/ Kerberos V4 */ +#define A_KERBEROS_V5 3 /* preauthenticate w/ Kerberos V5 */ +#define A_GSSAPI 4 /* preauthenticate with GSSAPI */ +#define A_SSH 5 /* preauthentication at session level */ /* * Definitions for buffer sizes. We get little help on setting maxima |