diff options
Diffstat (limited to 'main/hypermail')
-rw-r--r-- | main/hypermail/APKBUILD | 2 | ||||
-rw-r--r-- | main/hypermail/mdir2mbox.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/main/hypermail/APKBUILD b/main/hypermail/APKBUILD index 82ea752577..a1b02406c4 100644 --- a/main/hypermail/APKBUILD +++ b/main/hypermail/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Michael Mason <ms13sp@gmail.com> pkgname=hypermail pkgver=2.2.0 -pkgrel=1 +pkgrel=2 pkgdesc="Mail Archiver" url="http://www.hypermail-project.org" license="GPL" diff --git a/main/hypermail/mdir2mbox.lua b/main/hypermail/mdir2mbox.lua index dd883e02db..1a8416bad2 100644 --- a/main/hypermail/mdir2mbox.lua +++ b/main/hypermail/mdir2mbox.lua @@ -70,7 +70,7 @@ file_to_mbox = function (path) local date = string.match("\n" .. headers, "\nDate: ([^\n]*)") if date == nil then - date = os.date ("%c", posix.stat(path, "mtime")) + date = os.date ("%a, %d %b %Y %X +%z", posix.stat(path, "mtime")) end local weekday,day,month,year,time,offset = string.match(date, "([^,]*), +(%d+) (%a+) (%d+) ([%d:]*) ([%d]*)") |