From: Vincent Bernat Date: Sun, 27 Sep 2009 07:31:17 +0000 (+0000) Subject: Prepare new upstream release. X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2c261550fb0a3c03e3cf1dac53ab4ab75cb57b1c;p=roundcube.git Prepare new upstream release. We drop patch about logging failed logins: it does not work and this can now be done with plugins. --- diff --git a/debian/changelog b/debian/changelog index 219cc98..3c50f2a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,12 +1,12 @@ -roundcube (0.2.2-2) UNRELEASED; urgency=low +roundcube (0.3-1) UNRELEASED; urgency=low + * New upstream release. Closes: #545498. * Update debconf translations: + Italian, thanks to Luca Monducci. Closes: #544199. + Czech, thanks to Miroslav Kure. Closes: #546413. * Roundcube configuration now uses 'language' instead of 'locale_string' to specify the default language. Update postinst to reflect this - change. Thanks to Richard van den Berg for noticing this. Closes: - #544579. + change. Thanks to Richard van den Berg for noticing this. Closes: #544579. -- Vincent Bernat Wed, 16 Sep 2009 22:32:29 +0200 diff --git a/debian/patches/log-failed-logins.patch b/debian/patches/log-failed-logins.patch deleted file mode 100644 index 09bfc71..0000000 --- a/debian/patches/log-failed-logins.patch +++ /dev/null @@ -1,13 +0,0 @@ -Log failed logins. ---- roundcube-0.1.1/index.php 2008-11-11 18:17:37.939438895 +0900 -+++ roundcube-0.1.1-secured/index.php 2008-11-11 18:01:06.000000000 +0900 -@@ -101,6 +101,9 @@ - } - else { - $OUTPUT->show_message($IMAP->error_code < -1 ? 'imaperror' : 'loginfailed', 'warning'); -+ if($IMAP->error_code != -1){ -+ file_put_contents('php://stderr',"[".strftime("%c")."] [roundcube] [client ".$_SERVER['REMOTE_ADDR']."] failed login attempt.\n"); -+ } - $RCMAIL->kill_session(); - } - }