]> git.donarmstrong.com Git - roundcube.git/commitdiff
Prepare new upstream release.
authorVincent Bernat <bernat@debian.org>
Sun, 27 Sep 2009 07:31:17 +0000 (07:31 +0000)
committerJérémy Bobbio <lunar@debian.org>
Sat, 18 Jun 2011 18:24:30 +0000 (20:24 +0200)
We drop patch about logging failed logins: it does not work and this
can now be done with plugins.

debian/changelog
debian/patches/log-failed-logins.patch [deleted file]

index 219cc98815e9e2a69291e36daa1cd691d9b95bff..3c50f2a27f7abb8e484ac6303d1457823dad690d 100644 (file)
@@ -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 <bernat@debian.org>  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 (file)
index 09bfc71..0000000
+++ /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();
-   }
- }