mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-22 17:28:25 +01:00
* src/mod_roster.erl: According to RFC3921 section 9.2, outbound
subscribe presence packets must be sent, even if the user has already asked for subcription previously (subscription: none and pending: out). The mod_roster now conforms to this behaviour (EJAB-102). * src/mod_roster_odbc.erl: Likewise. SVN Revision: 574
This commit is contained in:
parent
7ec4c9c119
commit
ce5d10eb59
@ -1,3 +1,11 @@
|
||||
2006-05-29 Mickael Remond <mickael.remond@process-one.net>
|
||||
|
||||
* src/mod_roster.erl: According to RFC3921 section 9.2, outbound
|
||||
subscribe presence packets must be sent, even if the user has already
|
||||
asked for subcription previously (subscription: none and pending: out).
|
||||
The mod_roster now conforms to this behaviour.
|
||||
* src/mod_roster_odbc.erl: Likewise.
|
||||
|
||||
2006-05-27 Mickael Remond <mickael.remond@process-one.net>
|
||||
|
||||
* src/configure.ac: Added an optional check for krb5.h in
|
||||
|
@ -507,7 +507,7 @@ out_state_change(none, none, subscribe) -> {none, out};
|
||||
out_state_change(none, none, subscribed) -> none;
|
||||
out_state_change(none, none, unsubscribe) -> none;
|
||||
out_state_change(none, none, unsubscribed) -> none;
|
||||
out_state_change(none, out, subscribe) -> none;
|
||||
out_state_change(none, out, subscribe) -> {none, out}; %% We need to resend query (RFC3921, section 9.2)
|
||||
out_state_change(none, out, subscribed) -> none;
|
||||
out_state_change(none, out, unsubscribe) -> {none, none};
|
||||
out_state_change(none, out, unsubscribed) -> none;
|
||||
|
@ -609,7 +609,7 @@ out_state_change(none, none, subscribe) -> {none, out};
|
||||
out_state_change(none, none, subscribed) -> none;
|
||||
out_state_change(none, none, unsubscribe) -> none;
|
||||
out_state_change(none, none, unsubscribed) -> none;
|
||||
out_state_change(none, out, subscribe) -> none;
|
||||
out_state_change(none, out, subscribe) -> {none, out}; %% We need to resend query (RFC3921, section 9.2)
|
||||
out_state_change(none, out, subscribed) -> none;
|
||||
out_state_change(none, out, unsubscribe) -> {none, none};
|
||||
out_state_change(none, out, unsubscribed) -> none;
|
||||
|
Loading…
Reference in New Issue
Block a user