THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#24 - Module drouting, address routeid as string
User who did this - Raúl Alexis Betancor Santana (rbetancor)
----------
The module is not abandoned, it's maintained by me.
The fact is that I'm working on a full new version of drouting with lot of improments, so if you could add some comments about what you need, maybe I could work on it.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=24#comment18
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
Raúl Alexis Betancor Santana has taken ownership of the following task:
FS#24 - Module drouting, address routeid as string
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=24
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#24 - Module drouting, address routeid as string
User who did this - Andrey 'Krieger' Utkin (andrey.utkin.2)
----------
> If you want to become a maintainer of this module, I am happy to grant you commit access.
Thanks but not this time :)
Happy New Year!
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=24#comment17
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#24 - Module drouting, address routeid as string
User who did this - Daniel-Constantin Mierla (miconda)
----------
Thank! At first sight looks good.
Probably not many active developers are using this module, there are a lot options to do least cost routing and load balancing.
If you want to become a maintainer of this module, I am happy to grant you commit access.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=24#comment16
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
A new Flyspray task has been opened. Details are below.
User who did this - Andrey 'Krieger' Utkin (andrey.utkin.2)
Attached to Project - sip-router
Summary - Module drouting, address routeid as string
Task Type - Improvement
Category - Module
Status - Unconfirmed
Assigned To -
Operating System - All
Severity - Low
Priority - Normal
Reported Version - Development
Due in Version - Undecided
Due Date - Undecided
Details - drouting in kamailio git looks a bit abandoned.
This patch is result of merging with opensips.
Patched module reads routeid field of database table 'dr_rules' as string, not as int.
Unfortunately this module did not fit my requirements (i need non-numeric prefixes), so patch is not tested.
Happy New Year!
One or more files have been attached.
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=24
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
Module: sip-router
Branch: sr_3.0
Commit: 5fa3a6acad0f43785e536a2afe2beb2b555ee88b
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=5fa3a6a…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Juha Heinanen <jh(a)tutpro.com>
Date: Fri Dec 11 23:07:27 2009 +0100
tls: name the certificates based on $MAIN_NAME
(cherry picked from commit 6ecc6c13f63dab04083f61aa1b7ee767f9441ee0)
---
modules/tls/Makefile | 2 +-
modules/tls/sip-router_cert.sh | 22 ++++++++++++----------
2 files changed, 13 insertions(+), 11 deletions(-)
diff --git a/modules/tls/Makefile b/modules/tls/Makefile
index f3970a4..0c3aa30 100644
--- a/modules/tls/Makefile
+++ b/modules/tls/Makefile
@@ -23,6 +23,6 @@ include ../../Makefile.modules
install-tls-cert: $(cfg_prefix)/$(cfg_dir)
- ./$(SCR_NAME)_cert.sh -d $(cfg_prefix)/$(cfg_dir)
+ MAIN_NAME=$(MAIN_NAME) ./$(SCR_NAME)_cert.sh -d $(cfg_prefix)/$(cfg_dir)
install-cfg: install-tls-cert
diff --git a/modules/tls/sip-router_cert.sh b/modules/tls/sip-router_cert.sh
index df08caa..9e1cd7f 100755
--- a/modules/tls/sip-router_cert.sh
+++ b/modules/tls/sip-router_cert.sh
@@ -3,18 +3,20 @@
# $Id$
#
# This script generates a self-signed TLS/SSL certificate that can be
-# immediately used with the TLS module of SER. The file was inspired
+# immediately used with the TLS module of SIP Router. The file was inspired
# by a script from Debian's uw-imapd package.
#
#############################################################################
# Configuration variables
#############################################################################
-DEFAULT_DIR="/usr/local/etc/ser"
+NAME=$MAIN_NAME
+if [ -z "$NAME" ] ; then NAME="sip-router"; fi;
+DEFAULT_DIR="/usr/local/etc/$NAME"
DEFAULT_DAYS=365
-DEFAULT_INFO="Self-signed certificate for SER"
-DEFAULT_CERT_FILENAME="ser-selfsigned.pem"
-DEFAULT_KEY_FILENAME="ser-selfsigned.key"
+DEFAULT_INFO="Self-signed certificate for $NAME"
+DEFAULT_CERT_FILENAME="$NAME-selfsigned.pem"
+DEFAULT_KEY_FILENAME="$NAME-selfsigned.key"
DEFAULT_OPENSSL='openssl'
@@ -50,19 +52,19 @@ longopts() {
usage() {
cat <<EOF
NAME
- $COMMAND - Generate a self-signed TLS/SSL certificate for use with SER.
+ $COMMAND - Generate a self-signed TLS/SSL certificate for use with $NAME.
SYNOPSIS
$COMMAND [options]
DESCRIPTION
This is a simple shell script that generates a self signed TLS/SSL
- certificate (and private key) for use with the tls module of SER. The
+ certificate (and private key) for use with the tls module of $NAME. The
self-signed certificate is suitable for testing and/or private setups.
You are encouraged to create a proper authorized one if needed.
Both certificate and key files are by default stored in the directory
- containing the configuration file of SER (unless you change it using
+ containing the configuration file of $NAME (unless you change it using
the options below).
OPTIONS
@@ -100,7 +102,7 @@ AUTHOR
Written by Jan Janak <jan(a)iptel.org>
REPORTING BUGS
- Report bugs to <ser-bugs(a)iptel.org>
+ Report bugs to <sr-dev(a)sip-router.org>
EOF
} #usage
@@ -175,7 +177,7 @@ if [ $? != 0 ] ; then
exit 1
fi
-echo "Creating a new SER self-signed certificate for '$FQDN'" \
+echo "Creating a new $NAME self-signed certificate for '$FQDN'" \
"valid for $DAYS days."
openssl req -new -x509 -days "$DAYS" -nodes -out "$DIR/$CERT_FILENAME" \
-keyout "$DIR/$KEY_FILENAME" > /dev/null 2>&1 <<+