Monotone-Parent: bdb3c86bf127fecd411885ad5bcf84eb8af9f672

Monotone-Revision: b226b4ac380c34d6adb7ee8a0fab3a0632d83b37

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-07-24T20:43:06
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2012-07-24 20:43:06 +00:00
parent 136c6dd92d
commit 2f42766717
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2012-07-24 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/samba-get-config.py: new utility taking a samba
configuration variable and prints the value on stdout
2012-07-20 Ludovic Marcotte <lmarcotte@inverse.ca>
* UI/MailPartViewers/UIxMailRenderingContext.m

View File

@ -0,0 +1,8 @@
#!/usr/bin/python
import sys
import samba.param
a = samba.param.LoadParm()
a.load_default()
print a.get(sys.argv[1])