SMSEagle message limit changed from 160 to 1200 chars (#666)

This commit is contained in:
Chris Caron 2022-09-17 11:30:11 -04:00 committed by GitHub
parent 892e961041
commit 2d33935e10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,7 +90,9 @@ class NotifySMSEagle(NotifyBase):
notify_path = '/jsonrpc/sms'
# The maxumum length of the text message
body_maxlen = 160
# The actual limit is 160 but SMSEagle looks after the handling
# of large messages in it's upstream service
body_maxlen = 1200
# The maximum targets to include when doing batch transfers
default_batch_size = 10