Also the hmac stuff
authorPeter Palfrader <peter@palfrader.org>
Sun, 14 Sep 2008 22:18:51 +0000 (00:18 +0200)
committerPeter Palfrader <peter@palfrader.org>
Sun, 14 Sep 2008 22:18:51 +0000 (00:18 +0200)
debian/changelog
ud-mailgate
userdir_ldap.py

index 5a83508..b4b966a 100644 (file)
@@ -1,10 +1,10 @@
 userdir-ldap (0.3.38) unstable; urgency=low
 
   * Fix order of some calls so stuff works again.
-  * And import pwd and os in userdir_ldap.py.
+  * And import pwd and os and the hmac crowed in userdir_ldap.py.
   * Using the right variable name will also help.
 
- -- Peter Palfrader <weasel@debian.org>  Mon, 15 Sep 2008 00:16:46 +0200
+ -- Peter Palfrader <weasel@debian.org>  Mon, 15 Sep 2008 00:18:37 +0200
 
 userdir-ldap (0.3.37) unstable; urgency=low
 
index d72cb9e..26e4b75 100755 (executable)
@@ -7,8 +7,6 @@
 
 import userdir_gpg, userdir_ldap, sys, traceback, time, ldap, os, commands
 import pwd, tempfile
-import hmac
-import sha as sha1_module
 
 from userdir_gpg import *
 from userdir_ldap import *
index 7d091f2..1bc9dbb 100644 (file)
@@ -19,6 +19,8 @@
 # Some routines and configuration that are used by the ldap progams
 import termios, re, imp, ldap, sys, crypt, rfc822, pwd, os;
 import userdir_gpg
+import hmac
+import sha as sha1_module
 
 try:
    File = open("/etc/userdir-ldap/userdir-ldap.conf");