e9fbe5e18b798728041b7e2ffc6c4fa964fc35a3 |
|
31-Jan-2018 |
Josef 'Jeff' Sipek <jeff.sipek@dovecot.fi> |
global: start relying on str_free(NULL) being a no-op
Cleanup performed with the following semantic patch:
@@
expression E;
@@
- if (E != NULL) {
- str_free(&E);
- }
+ str_free(&E); |
2435290e44809a9e6036dbb2701933c44cb0b0e7 |
|
29-Jan-2018 |
Stephan Bosch <stephan.bosch@dovecot.fi> |
imap-login: Fix copyright notice in imap-login-cmd-id.c. |
5329bb264c32fa887e53063ff53272160cb8d7e8 |
|
10-Jan-2018 |
Timo Sirainen <timo.sirainen@dovecot.fi> |
imap-login: Simplify ID handling code |
6f213bf43fe6c0f2f2192330d591b4e62d72b4bc |
|
10-Jan-2018 |
Timo Sirainen <timo.sirainen@dovecot.fi> |
imap-login: Rewrite ID parameter handling to be less fragile
There's no longer two places that need to be kept in sync. |
5233c86a95d3865500c291f00d08b1f4c678a424 |
|
10-Jan-2018 |
Timo Sirainen <timo.sirainen@dovecot.fi> |
imap-login: Move ID command handling to its own file. |