Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add sessions_alarm | John Hernandez | 2023-04-18 | 1 | -1/+33 |
| | | | | | | | | | Introduce new feature: sessions_alarm. Added new account setting: max_connections. On exceeding this number, user will get an alert. If number is less than 1, no alert will happen. Tests altered to fit new feature. | ||||
* | Allow setting client identification name/version manually | John Hernandez | 2023-04-09 | 1 | -1/+18 |
| | | | | | | | | Add changes allowing user to switch client name and version. Useful for enhancing user privacy. Minor cleanup. | ||||
* | let `account_new()` take ownership of passed values | Steffen Jaeckel | 2023-01-18 | 1 | -18/+1 |
| | | | | Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de> | ||||
* | Update copyright year | Michael Vetter | 2023-01-10 | 1 | -1/+1 |
| | |||||
* | accounts: deduplicate code via helper function | Michael Vetter | 2022-06-29 | 1 | -116/+54 |
| | |||||
* | Don't forget encryption status for OX and PGP. | MarcoPolo-PasTonMolo | 2022-06-17 | 1 | -10/+60 |
| | | | | | | | | Use a pgp.enabled and ox.enabled array the same way that omemo.enabled is used. Fixes https://github.com/profanity-im/profanity/issues/1694 Fixes https://github.com/profanity-im/profanity/issues/733 | ||||
* | accounts: get rid of guard around free | Michael Vetter | 2021-07-17 | 1 | -11/+5 |
| | |||||
* | Fix memory leak in accounts_get_login_status() | Dmitry Podgorny | 2021-07-17 | 1 | -0/+4 |
| | |||||
* | Restore last status string when connecting | Thorben Günther | 2021-07-01 | 1 | -2/+11 |
| | |||||
* | Add config.h in files were it was missing | Michael Vetter | 2021-03-26 | 1 | -0/+2 |
| | | | | Related to https://github.com/profanity-im/profanity/issues/1512 | ||||
* | Declare counter var inside loop | Michael Vetter | 2020-11-09 | 1 | -14/+7 |
| | | | | We require c99/gnu99 anyways. | ||||
* | Dont initialize i twice in accounts_get_account() | Michael Vetter | 2020-11-05 | 1 | -5/+5 |
| | |||||
* | Apply coding style | Michael Vetter | 2020-07-07 | 1 | -129/+123 |
| | |||||
* | Revert "Apply coding style" | Michael Vetter | 2020-07-07 | 1 | -126/+132 |
| | | | | | | This reverts commit 9b55f2dec0ea27a9ce4856e303425e12f866cea2. Sorting the includes creates some problems. | ||||
* | Apply coding style | Michael Vetter | 2020-07-07 | 1 | -132/+126 |
| | | | | Regards https://github.com/profanity-im/profanity/issues/1396 | ||||
* | Fix reading/writing linked files | Michael Vetter | 2020-06-13 | 1 | -1/+1 |
| | | | | | | "base" was not really base but the filename :-) Fix https://github.com/profanity-im/profanity/issues/1362 | ||||
* | Add option for legacy authentication | Dmitry Podgorny | 2020-06-05 | 1 | -2/+18 |
| | | | | | | | | New options: /connect <account> [auth default|legacy] /account <account> set auth default|legacy Fixes #1236. | ||||
* | Add context to autocomplete_with_func and use it for omemo trust command | Paul Fariello | 2020-01-31 | 1 | -2/+2 |
| | | | | Fix #1068 | ||||
* | Add vim modeline | Michael Vetter | 2019-11-13 | 1 | -0/+1 |
| | |||||
* | Add OMEMO policy | Paul Fariello | 2019-04-17 | 1 | -1/+66 |
| | | | | | | | | | | | | There is 3 policy: - manual: OMEMO session are only started manually - automatic: OMEMO session are only started if they have been started manually before - always: OMEMO session are always started unless they have been ended manually before Closes #1040 and fixes #1052 | ||||
* | Add random string at the end of the default resource | Paul Fariello | 2019-04-12 | 1 | -2/+4 |
| | | | | | | | | When connecting for the first time or when creating a new account don't use only 'profanity' as default resource. Some server don't support having 2 connection with same resource. Using profanity as default lead to deconnections. | ||||
* | Update copyright to include 2019 | Michael Vetter | 2019-01-22 | 1 | -1/+1 |
| | |||||
* | Add option to trust server's certificate | Dmitry Podgorny | 2018-11-06 | 1 | -0/+1 |
| | | | | | | | | | | | New tls policy "trust" added to /connect and /account. With the policy TLS connection is established even with invalid certificate. Note, that trust policy forces TLS connection and it fails when server doesn't support TLS. Examples: /connect <jid> tls trust /account <name> set tls trust | ||||
* | Update copyright | James Booth | 2018-01-21 | 1 | -1/+1 |
| | |||||
* | Legacy SSL support | Dmitry Podgorny | 2017-06-24 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | Add "legacy" tls policy to /account and /connect commands. When this policy is specified the connection is connected with XMPP_CONN_LEGACY_SSL flag. Notice, legacy SSL and STARTTLS are not compatible and user has to know when exactly the new policy should be used. To enable it, run one of the next commands: /connect <jid> tls legacy [server <host>] /account <name> set tls legacy Notice, there is no SRV record for legacy SSL. Therefore, you may need "server" property to connect successfully. Refer to configuration provided by your server. | ||||
* | Allow previous autocompletion with shift tab | James Booth | 2017-04-01 | 1 | -4/+4 |
| | |||||
* | Update Copyright | James Booth | 2017-01-28 | 1 | -1/+1 |
| | |||||
* | Allow clearing account resource | James Booth | 2016-11-22 | 1 | -0/+9 |
| | | | | issue #880 | ||||
* | Use server features for account muc service | James Booth | 2016-11-20 | 1 | -40/+56 |
| | | | | issue #878 | ||||
* | Move all filepath handling to files.c | James Booth | 2016-07-24 | 1 | -22/+7 |
| | |||||
* | Move xgd functions | James Booth | 2016-07-24 | 1 | -2/+2 |
| | |||||
* | Add config/files.c | James Booth | 2016-07-24 | 1 | -0/+1 |
| | |||||
* | Tidy headers | James Booth | 2016-07-24 | 1 | -2/+2 |
| | |||||
* | Moved jid.c | James Booth | 2016-07-24 | 1 | -1/+1 |
| | |||||
* | Update GPL link in headers | James Booth | 2016-07-24 | 1 | -1/+1 |
| | |||||
* | Updated copyright | James Booth | 2016-02-14 | 1 | -1/+1 |
| | |||||
* | Added account theme property | James Booth | 2016-01-22 | 1 | -1/+26 |
| | |||||
* | Added conf_string_list_add | James Booth | 2015-11-24 | 1 | -42/+1 |
| | |||||
* | Created config/conflists.c for shared config list handling | James Booth | 2015-11-23 | 1 | -51/+7 |
| | |||||
* | Applied coding style to accounts.c | James Booth | 2015-10-25 | 1 | -50/+50 |
| | |||||
* | Force tls on all connections, add tls policy account property | James Booth | 2015-10-18 | 1 | -3/+25 |
| | |||||
* | Add ability to script commands after connect | James Booth | 2015-10-15 | 1 | -2/+26 |
| | |||||
* | Added missing account properties to /account rename | James Booth | 2015-09-28 | 1 | -29/+26 |
| | |||||
* | Removed old code to fix legacy accounts | James Booth | 2015-09-28 | 1 | -58/+2 |
| | |||||
* | Include last activity in initial presence | James Booth | 2015-09-27 | 1 | -0/+11 |
| | |||||
* | Added auto xa option, tidied autoaway code | James Booth | 2015-09-27 | 1 | -0/+19 |
| | |||||
* | Save last activity to account on disconnect | James Booth | 2015-09-25 | 1 | -0/+17 |
| | |||||
* | Fixed various jid and account mem leaks | James Booth | 2015-06-24 | 1 | -0/+2 |
| | |||||
* | Merge branch 'master' into pgp | James Booth | 2015-05-04 | 1 | -17/+17 |
|\ | |||||
| * | Use null check convention in accounts.c | James Booth | 2015-05-04 | 1 | -17/+17 |
| | |