when kamailio try to dispatch the requests to Asterisk, it inserts a sip header without newline, so the sip header will be concatenated with the next header
herein an example:
sip:edi-2001@217.108.243.20:12983;transport=TCP;obContact: <sip:edi-2001@10.42.0.11:5060;transport=UDP>
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/1257
- Fedora 25, 26
- RHEL 6, 7
- OpenSUSE Leap, Tumbleweed
#### Pre-Submission Checklist
- [ ] Commit message has the format required by CONTRIBUTING guide
- [x] Commits are split per component (core, individual modules, libs, utils, ...)
- [x] Each component has a single commit (if not, squash them into one commit)
- [ x No commits to README files for modules (changes must be done to docbook files
in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change
- [ ] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist:
- [ ] PR should be backported to stable branches
- [x] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
Purpose of PR - trac packaging in one SPEC file for all RPM based dists.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1244
-- Commit Summary --
* pkg/kamailio/obs: Created links for dists:
-- File Changes --
A pkg/kamailio/fedora/25 (1)
A pkg/kamailio/fedora/26 (1)
M pkg/kamailio/obs/kamailio.spec (9)
A pkg/kamailio/opensuse/1315 (1)
A pkg/kamailio/opensuse/1330 (1)
A pkg/kamailio/rhel/6 (1)
A pkg/kamailio/rhel/7 (1)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1244.patchhttps://github.com/kamailio/kamailio/pull/1244.diff
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/1244
#### Pre-Submission Checklist
- [x] Commit message has the format required by CONTRIBUTING guide
- [ ] Commits are split per component (core, individual modules, libs, utils, ...)
- [ ] Each component has a single commit (if not, squash them into one commit)
- [ ] No commits to README files for modules (changes must be done to docbook files
in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change
- [x] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist:
- [ ] PR should be backported to stable branches
- [x] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
Changes is documented in in commit messages
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1259
-- Commit Summary --
* pkg/kamailio/alpine: Removed custom kamailio.cfg, now used default
* pkg/kamailio/alpine_docker: Allow build docker image from forked repos
* pkg/kamailio/alpine_docker: Fixed missed symbolic links
-- File Changes --
M pkg/kamailio/alpine/APKBUILD (13)
D pkg/kamailio/alpine/kamailio.cfg (106)
M pkg/kamailio/alpine_docker/build.sh (10)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1259.patchhttps://github.com/kamailio/kamailio/pull/1259.diff
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/1259
### Description
Docker container at runtime is configured using environment vars.
Kamailio now not supports configure memory using environment vars and need use workarroud like [entrypoint.sh](https://github.com/kamailio/kamailio/blob/master/pkg/kamaili….
I want remove this workarround but need to add ability to configure kamailio memory using vars `SHM_MEMORY` and `PKG_MEMORY` when kamailio started without `-m` and `-M` keys
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/1252
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1258
-- Commit Summary --
* pkg/kamailio/alpine removed mi_fifo from config file.
* pkg/kamailio/alpine_docker: Docker args now passed to kamailio #1252
-- File Changes --
M pkg/kamailio/alpine/kamailio.cfg (2)
M pkg/kamailio/alpine_docker/Dockerfile (2)
M pkg/kamailio/alpine_docker/README.md (8)
M pkg/kamailio/alpine_docker/build.sh (1)
D pkg/kamailio/alpine_docker/entrypoint.sh (14)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1258.patchhttps://github.com/kamailio/kamailio/pull/1258.diff
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/1258
### Description
Kamailio won't start after pulling from master
Commit triggering the problem
```
git show ec15b23f25ba2502a661157ae69b4dc1db923f66
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Fri Sep 1 12:00:06 2017 +0200
core: main - don't count wtimer secondary process separately
- it is registered via sr_wtimer_init()
- fixes the extra empty entry in process table reported by Juha Heinanen
```
#### Reproduction
Always with specific configuration (I can diagnose further is needed)
#### Log Messages
When trying to start Kamailio
```
0(26583) CRITICAL: <core> [core/pt.c:285]: fork_process(): Process limit of 13 exceeded. Will simulate fork fail.
0(26583) CRITICAL: <core> [main.c:1720]: main_loop(): cannot fork tcp main process: Invalid argument
```
### Possible Solutions
Not sure is the config I am using is not supported or if Kamailio code should be fixed.
rolling back the commit is fixing the issue
`git revert ec15b23f25ba2502a661157ae69b4dc1db923f66`
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/1237