summaryrefslogtreecommitdiff
path: root/utils.lua
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2013-09-19 18:10:13 (GMT)
committerChristian Pointner <equinox@helsinki.at>2013-09-19 18:10:13 (GMT)
commitbb2467ca0c1db2dc9476c3be0f428463aeac0bb0 (patch)
treecd68dd44a90cf0c21cfe066f08f34787e1263cb0 /utils.lua
parent52f7d4766af2136199d78885cfbd4a6defcebdcb (diff)
fixed lua path
Diffstat (limited to 'utils.lua')
-rw-r--r--utils.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils.lua b/utils.lua
index 950ca58..1974d41 100644
--- a/utils.lua
+++ b/utils.lua
@@ -22,7 +22,7 @@
local utils = {}
function utils.send_mail(address, subject, bodytext)
- local fp = assert(io.popen("/usr/sbin/msmtp " .. address, "w"))
+ local fp = assert(io.popen("/usr/bin/msmtp " .. address, "w"))
fp:write("Subject: " .. subject .. "\n")
fp:write("To: " .. address .. "\n")
@@ -32,4 +32,4 @@ function utils.send_mail(address, subject, bodytext)
fp:close()
end
-return utils \ No newline at end of file
+return utils