the example should just use SCRAM-SHA-1

lumi created

Change summary

examples/client.rs | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)

Detailed changes

examples/client.rs 🔗

@@ -4,7 +4,7 @@ use xmpp::jid::Jid;
 use xmpp::client::ClientBuilder;
 use xmpp::plugins::messaging::{MessagingPlugin, MessageEvent};
 use xmpp::plugins::presence::{PresencePlugin, Show};
-use xmpp::sasl::mechanisms::{Scram, Sha1, Plain};
+use xmpp::sasl::mechanisms::{Scram, Sha1};
 
 use std::env;
 
@@ -15,9 +15,7 @@ fn main() {
     client.register_plugin(PresencePlugin::new());
     let pass = env::var("PASS").unwrap();
     let name = jid.node.clone().expect("JID requires a node");
-    client.connect(&mut Plain::new(name, pass)).unwrap();
-    // Replace with this line if you want SCRAM-SHA-1 authentication:
-    //  client.connect(&mut Scram::<Sha1>::new(name, pass).unwrap()).unwrap();
+    client.connect(&mut Scram::<Sha1>::new(name, pass).unwrap()).unwrap();
     client.bind().unwrap();
     client.plugin::<PresencePlugin>().set_presence(Show::Available, None).unwrap();
     loop {