diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-12-17 02:32:10 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-12-17 02:32:10 +0100 |
commit | 3dfa111db87de7c5059cb6521c6e05b7f56af195 (patch) | |
tree | 30c945fc8cf625ab5e8a2fbd841a5afe3d5c7d50 /applications/luci-app-pbx-voicemail | |
parent | cfd2b5d2a46da39938519947b7bd3206f374854a (diff) | |
parent | c481f3f34325b9c1cf817b16a567a6b10fdd1f2e (diff) |
Merge pull request #578 from cshore/pull-request-validator-rework
Pull request validator rework
Diffstat (limited to 'applications/luci-app-pbx-voicemail')
-rw-r--r-- | applications/luci-app-pbx-voicemail/luasrc/model/cbi/pbx-voicemail.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-pbx-voicemail/luasrc/model/cbi/pbx-voicemail.lua b/applications/luci-app-pbx-voicemail/luasrc/model/cbi/pbx-voicemail.lua index 9ff2ed97fe..a6087e9aec 100644 --- a/applications/luci-app-pbx-voicemail/luasrc/model/cbi/pbx-voicemail.lua +++ b/applications/luci-app-pbx-voicemail/luasrc/model/cbi/pbx-voicemail.lua @@ -92,7 +92,7 @@ s = m:section(NamedSection, "voicemail_smtp", "voicemail", translate("Outgoing m s.anonymous = true serv = s:option(Value, "smtp_server", translate("SMTP Server Hostname or IP Address")) -serv.datatype = "host" +serv.datatype = "host(0)" port = s:option(Value, "smtp_port", translate("SMTP Port Number")) port.datatype = "port" |