Allow reception of unencrypted messages.
(&self)
| 1232 | |
| 1233 | /// Allow reception of unencrypted messages. |
| 1234 | pub async fn allow_unencrypted(&self) -> Result<()> { |
| 1235 | self.set_config_bool(Config::ForceEncryption, false).await?; |
| 1236 | Ok(()) |
| 1237 | } |
| 1238 | } |
| 1239 | |
| 1240 | pub async fn encrypt_raw_message( |
no test coverage detected