-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
6.2 - Blacklist #1
base: master
Are you sure you want to change the base?
Conversation
We can now enter every domain we want instead of picking a domain in a list
Hi @c-paradis , let me review it shortly and come back with feedback. Thanks for the contributions, Bogdan |
Hi @bogdan-iancu , i've added another option to the blacklist manager. It works for the globalblacklist and the userblacklist as well |
Hi @c-paradis , the patch looks good, but before merging, please place the Copyright and License text in all the new files . See the example from the existing file, simply copy and replace the Copyright line with your name/business/etc. |
Thank you @c-paradis , I will shortly review. |
* be compatible with any SQL mode. This fixes: SELECT DISTINCT callid FROM sip_trace WHERE status='' AND direction='in' ORDER BY id DESC; ERROR 3065 (HY000): Expression #1 of ORDER BY clause is not in SELECT list, references column 'opensips.sip_trace.id' which is not in SELECT list; this is incompatible with DISTINCT * be consistent across different backends (e.g. don't sort the results differently with MySQL vs. Postgres) Fixes #83
* be compatible with any SQL mode. This fixes: SELECT DISTINCT callid FROM sip_trace WHERE status='' AND direction='in' ORDER BY id DESC; ERROR 3065 (HY000): Expression #1 of ORDER BY clause is not in SELECT list, references column 'opensips.sip_trace.id' which is not in SELECT list; this is incompatible with DISTINCT * be consistent across different backends (e.g. don't sort the results differently with MySQL vs. Postgres) Fixes #83 (cherry picked from commit e2c4246)
* be compatible with any SQL mode. This fixes: SELECT DISTINCT callid FROM sip_trace WHERE status='' AND direction='in' ORDER BY id DESC; ERROR 3065 (HY000): Expression #1 of ORDER BY clause is not in SELECT list, references column 'opensips.sip_trace.id' which is not in SELECT list; this is incompatible with DISTINCT * be consistent across different backends (e.g. don't sort the results differently with MySQL vs. Postgres) Fixes #83 (cherry picked from commit e2c4246)
(cherry picked from commit 5806150)
(cherry picked from commit 5396b54)
Hello,
I've added a new module to Opensips-cp.
This blacklist manager allows you to read, insert and edit entries in the database.
It checks if the admin has read-only or read-write permissions to allow him to add / edit entries.
With this tool you can also reload the global blacklist cache with an "apply changes" button.