From: Tom C. <tom...@us...> - 2004-12-31 01:38:54
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4291 Modified Files: Tag: stable-1_2 ChangeLog template.c Log Message: Add macro for current language (##~) and document in html/README. [818883] Index: template.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/template.c,v retrieving revision 1.7.2.9 retrieving revision 1.7.2.10 diff -u -d -r1.7.2.9 -r1.7.2.10 --- template.c 31 Dec 2004 01:02:40 -0000 1.7.2.9 +++ template.c 31 Dec 2004 01:38:33 -0000 1.7.2.10 @@ -131,6 +131,10 @@ printh ("user=%C&dom=%C&time=%d&", Username, Domain, Mytime); break; + case '~': + printf ("%s", Lang); + break; + /* send the action user parameter */ case 'A': printh ("%H", ActionUser); Index: ChangeLog =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/ChangeLog,v retrieving revision 1.15.2.48 retrieving revision 1.15.2.49 diff -u -d -r1.15.2.48 -r1.15.2.49 --- ChangeLog 31 Dec 2004 01:29:31 -0000 1.15.2.48 +++ ChangeLog 31 Dec 2004 01:38:33 -0000 1.15.2.49 @@ -10,6 +10,8 @@ Thanks to PinkRoccade Public Sector for sponsoring this feature. - Modify User: For clarity, change "Deleted" to "All mail deleted" and "Vacation" to "Send Vacation Auto-Repsonse". + - template.c: Add macro for current language (##~) and document + in html/README. [818883] 1.2.6 - released 24-Dec-04 |