summaryrefslogtreecommitdiff
path: root/localsendsms
diff options
context:
space:
mode:
authorroot <root@hello.jones.dk>2010-06-06 04:36:27 +0200
committerroot <root@hello.jones.dk>2010-06-06 04:36:27 +0200
commit2915e2a7d90483216a7caf32a715a2ffe0200c1e (patch)
tree3a37e5c721badeb79958eaee77648663058519e0 /localsendsms
parentb60961d6f2805769f36abf1588646c501fe81309 (diff)
Respect stripprefix in localmarkdown2sms localsendsms .
Diffstat (limited to 'localsendsms')
-rwxr-xr-xlocalsendsms4
1 files changed, 3 insertions, 1 deletions
diff --git a/localsendsms b/localsendsms
index 6449e3c..ff82ffd 100755
--- a/localsendsms
+++ b/localsendsms
@@ -28,6 +28,7 @@ my $sms_concat = $ENV{SMS_CONCAT};
my $sms_dlr_mask = $ENV{SMS_DLR_MASK};
my $sms_dlr_url = $ENV{SMS_DLR_URL};
my $sms_validity = $ENV{SMS_VALIDITY};
+my $stripprefix = $ENV{stripprefix};
# decode data if passed from kannel
if ($urldecode) {
@@ -37,7 +38,8 @@ my ($phone) = shift @ARGV;
# strip international prefix
# (prefix is optional some places and illegal at other places - forgot where)
-#$phone =~ s/\+/ /g;
+$phone =~ s/^\+//g if ($stripprefix);
+$sms_phone =~ s/^\+//g if ($stripprefix);
if ($debug) {
Log::Log4perl->easy_init($DEBUG);