Author: adam-guest
Date: 2008-03-30 18:34:13 +0000 (Sun, 30 Mar 2008)
New Revision: 1226

Modified:
   trunk/debian/bug/script
   trunk/debian/changelog
Log:
bug/script:
+ Don't include the BTS_SMTP_AUTH_* options


Modified: trunk/debian/bug/script
===================================================================
--- trunk/debian/bug/script     2008-03-30 18:27:41 UTC (rev 1225)
+++ trunk/debian/bug/script     2008-03-30 18:34:13 UTC (rev 1226)
@@ -3,7 +3,8 @@
 printf "\n--- /etc/devscripts.conf ---\n" >&3
 
 if [ -f /etc/devscripts.conf ]; then
-    egrep '^[^#]' /etc/devscripts.conf >&3
+    egrep '^[^#]' /etc/devscripts.conf | \
+       egrep -v "^\s*BTS_SMTP_AUTH_" >&3
 else
     echo "Not present" >&3
 fi
@@ -11,7 +12,8 @@
 printf "\n--- ~/.devscripts ---\n" >&3
 
 if [ -f ~/.devscripts ]; then
-    egrep '^[^#]' ~/.devscripts >&3
+    egrep '^[^#]' ~/.devscripts | \
+       egrep -v "^\s*BTS_SMTP_AUTH_" >&3
 else
     echo "Not present" >&3
 fi

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog      2008-03-30 18:27:41 UTC (rev 1225)
+++ trunk/debian/changelog      2008-03-30 18:34:13 UTC (rev 1226)
@@ -1,8 +1,10 @@
 devscripts (2.10.21) UNRELEASED; urgency=low
 
   * bts: Allow SMTP authentication to be used when sending e-mails
-  * bug/script: Don't produce an error if either of the configuration files
-    doesn't exist (Closes: #472748)
+  * bug/script:
+    + Don't produce an error if either of the configuration files doesn't
+      exist (Closes: #472748)
+    + Don't include the BTS_SMTP_AUTH_* options
   * checkbashisms:
     + Strip off the quoted portion of a line that ends a "quoted block" before
       deciding whether it's a comment line and skipping it



-- 
To unsubscribe, send mail to [EMAIL PROTECTED]

Reply via email to