about summary refs log tree commit diff stats
path: root/src/event/server_events.c
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1063 from paulfariello/hotfix/presence-before-rosterMichael Vetter2019-04-171-0/+1
|\ | | | | Handle presence received before roster
| * Handle presence received before rosterPaul Fariello2019-04-171-0/+1
| | | | | | | | | | | | | | | | | | | | Presence of contact not found in roster are filtered out. But sometimes roster is received after a first few presences. We choose to store presences until we receive roster and then process this presences. Fixes #1050
* | Follow OMEMO policy even when opening window on message and carbon receptionPaul Fariello2019-04-171-0/+14
|/ | | | This should close #1052
* Try to start sessions with every jid in rosterPaul Fariello2019-04-101-0/+4
|
* Wait for discovery end to publish omemo devicelist and bundlePaul Fariello2019-04-101-0/+8
| | | | Add sv_ev_connection_features_received for that purpose
* Rework MUC reflected message filteringPaul Fariello2019-04-101-7/+3
| | | | | | | | | Reflected messages can't be filtered by nick only otherwise you might ignore messages comming from you on another devices. Consequently we maintain a list of sent messages id in mucwin. To be sure the id will be correctly reflected we use the origin-id stanza.
* Ensure encrypted carbon of own message are marked as encryptedPaul Fariello2019-04-101-2/+38
|
* Log and print outgoing encrypted messagePaul Fariello2019-04-101-11/+55
|
* Handle decrypted OMEMO messages as suchPaul Fariello2019-04-101-4/+90
|
* Add support for encrypted carbonPaul Fariello2019-04-101-1/+1
| | | | Fix {signed,}_pre_key store
* Add OMEMO identity materials long term storagePaul Fariello2019-04-101-0/+8
|
* Follow normal workflow for OMEMO message receptionPaul Fariello2019-04-101-1/+1
| | | | | | We try to decrypt all messages, if it's successful we use sv_ev_incoming_message even for OMEMO messages. We pass an OMEMO boolean to let UI be aware that message were encrypted.
* Redraw screen after entry of PGP secret keyMichael Vetter2019-02-201-0/+10
| | | | | | | | | | | | | | | | | | | | | | After specifying the PGP key ID with pgp.keyid within the accounts file on startup profanity asks for the secret key passphrase. It then doesn't redraw the screen, leaving it in an odd looking state. This probably only happens with pinentry-curses since it draws in screen. We need this fix for cli only environments. Fixes https://github.com/boothj5/profanity/issues/906 reported by Bob Mottram. Based on https://github.com/boothj5/profanity/pull/908 by Bob Mottram Bob removed his GitHub account, so GitHub created a ghost placeholder user for him, which unfortunately makes it impossible to cherry-pick this commit. To more or less preserve authorship I added him as co-author. Commit picked and message edited by jubalh. Co-authored-by: Bob Mottram <bob@freedombone.net>
* Update copyright to include 2019Michael Vetter2019-01-221-1/+1
|
* Merge pull request #926 from msantos/null-pointer-dereferenceMichael Vetter2018-07-301-6/+8
|\ | | | | server_events: fix potential NULL pointer deref
| * server_events: fix potential NULL pointer derefMichael Santos2017-04-121-6/+8
| |
* | Add preferences for tab displayJames Booth2018-03-091-2/+2
| |
* | Show name in statusbar tabs WIPJames Booth2018-03-081-2/+2
| |
* | Add /rooms service autocompletionJames Booth2018-02-051-0/+7
| |
* | Update copyrightJames Booth2018-01-211-1/+1
|/
* Update CopyrightJames Booth2017-01-281-1/+1
|
* Remove status from cl_ev_presence_sendJames Booth2017-01-151-4/+8
| | | | fixes #888
* Fix typoJames Booth2016-10-291-1/+1
|
* Add win_printJames Booth2016-10-151-1/+1
|
* Use win_printf_line instead of win_printlnJames Booth2016-10-151-1/+1
|
* Add sv_ev_bookmark_autojoinJames Booth2016-08-281-0/+22
|
* Free rooms list in sv_ev_login_account_successJames Booth2016-07-251-2/+3
|
* Tidy headersJames Booth2016-07-241-6/+7
|
* Moved window_list.cJames Booth2016-07-241-1/+1
|
* Moved roster_list.cJames Booth2016-07-241-1/+1
|
* Moved muc.cJames Booth2016-07-241-1/+1
|
* Moved chat_session.cJames Booth2016-07-241-1/+1
|
* Update GPL link in headersJames Booth2016-07-241-1/+1
|
* Option to bookmark room invitesJames Booth2016-05-231-1/+7
| | | | issue #813
* Remove redundant tls secured functionJames Booth2016-05-061-1/+1
|
* Move connection fulljid functionJames Booth2016-05-061-2/+2
|
* Rename jabber_ functionsJames Booth2016-05-061-3/+3
|
* Define stanza's attributes as const char*Dmitry Podgorny2016-04-271-1/+1
| | | | | | | | | | | | In most get-like funcitons libstrophe returns pointer to a string that resides in an internal structure (e.g. xmpp_stanza_t). Hence, Profanity must not change such strings. Define respective variables as 'const char*' to reduce a chance of error and conform future libstrophe's interface. This patch mostly replaces 'char *' with 'const char*', but also fixes two memory leaks after stanza_get_reason(). Add comment within stanza_get_reason() to fix conflict with different allocator types.
* Free mentions listJames Booth2016-04-071-0/+2
|
* Added whole word matches for room mentionJames Booth2016-04-071-4/+12
|
* Added mention match preferencesJames Booth2016-04-031-4/+2
|
* Added prof_strstr functionJames Booth2016-04-031-9/+5
|
* Removed #AX_PREFIX_CONFIG_HJames Booth2016-03-311-22/+22
|
* Added plugins presence hooksJames Booth2016-03-301-0/+3
|
* Update roster count on carbonsJames Booth2016-03-221-0/+1
|
* Add PGP decryption for incoming/outgoing carbonsJames Booth2016-03-221-18/+36
|
* Removed plugin hook call for MUC historyJames Booth2016-02-181-4/+1
|
* Merge branch 'master' into plugins-cJames Booth2016-02-141-1/+1
|\ | | | | | | | | | | Conflicts: src/main.c src/ui/console.c
| * Updated copyrightJames Booth2016-02-141-1/+1
| |
* | Added C plugin code from plugins branchJames Booth2016-02-141-29/+52
|/