Module: kamailio
Branch: 5.6
Commit: d456f07cd14b8f3bf7a4eae229a8e1ba46be45c4
URL:
https://github.com/kamailio/kamailio/commit/d456f07cd14b8f3bf7a4eae229a8e1b…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2022-06-16T09:46:34+02:00
modules: readme files regenerated - modules ... [skip ci]
---
Modified: src/modules/auth_identity/README
Modified: src/modules/db_cluster/README
Modified: src/modules/sipdump/README
---
Diff:
https://github.com/kamailio/kamailio/commit/d456f07cd14b8f3bf7a4eae229a8e1b…
Patch:
https://github.com/kamailio/kamailio/commit/d456f07cd14b8f3bf7a4eae229a8e1b…
---
diff --git a/src/modules/auth_identity/README b/src/modules/auth_identity/README
index 5ffdd5d9b1b..acbac172dd2 100644
--- a/src/modules/auth_identity/README
+++ b/src/modules/auth_identity/README
@@ -25,7 +25,7 @@ Gergely Kovacs
5.6. callid_cache_limit (integer)
5.7. certificate_cache_limit (integer)
5.8. cainfo_path (string)
- 5.9. accept_pem_certs ([0|1])
+ 5.9. accept_pem_certs (int)
6. Functions
@@ -91,7 +91,7 @@ Chapter 1. Admin Guide
5.6. callid_cache_limit (integer)
5.7. certificate_cache_limit (integer)
5.8. cainfo_path (string)
- 5.9. accept_pem_certs ([0|1])
+ 5.9. accept_pem_certs (int)
6. Functions
@@ -174,7 +174,7 @@ Chapter 1. Admin Guide
5.6. callid_cache_limit (integer)
5.7. certificate_cache_limit (integer)
5.8. cainfo_path (string)
- 5.9. accept_pem_certs ([0|1])
+ 5.9. accept_pem_certs (int)
5.1. privatekey_path (string)
@@ -296,11 +296,12 @@
modparam("auth_identity","certificate_cache_limit",4096)
modparam("auth_identity","cainfo_path","/etc/ssl/certs/ca-certificates.crt")
...
-5.9. accept_pem_certs ([0|1])
+5.9. accept_pem_certs (int)
Note: this parameter is for verifier service.
Enables the acquired certificate processing if it is in PEM format.
+ Value can be 0 or 1.
This parameter is optional. The default value is "0".
diff --git a/src/modules/db_cluster/README b/src/modules/db_cluster/README
index 7260f0f1aa8..5b4962e0025 100644
--- a/src/modules/db_cluster/README
+++ b/src/modules/db_cluster/README
@@ -213,7 +213,8 @@ modparam("db_cluster", "max_query_length", 5)
modparam("db_cluster", "connection",
"c1=>mysql://kamailio:kamailiorw@localhost/kamailio1")
modparam("db_cluster", "connection",
- "c2=>mysql://kamailio:kamailiorw@localhost/kamailio2")
+ "c2=>mysql://kamailio:kamailiorw@remotehost/kamailio2")
+
modparam("db_cluster", "cluster",
"k1=>c1=9r9p;c2=9r9p")
modparam("acc", "db_url", "cluster://k1")
diff --git a/src/modules/sipdump/README b/src/modules/sipdump/README
index 8b03c3849f3..e5ba03d8fbd 100644
--- a/src/modules/sipdump/README
+++ b/src/modules/sipdump/README
@@ -320,7 +320,7 @@ modparam("rtimer", "timer",
"name=tjobs;interval=300;mode=1;")
modparam("rtimer", "exec", "timer=tjobs;route=TCLEAN")
...
route[TCLEAN] {
- exec_cmd("find /tmp -type f -name kamailio-sipdump-* -mtime +1 -delete
&");
+ exec_cmd("find /tmp -type f -name kamailio-sipdump-* -mtime +2 -delete
&");
}
...