added indent to fn parameter. Fixes #6

This commit is contained in:
Philip (a-0) 2022-09-02 11:34:24 +02:00
parent 58cc5b165b
commit 19ebd247f7

View file

@ -20,7 +20,7 @@ async fn main() {
crate::config::write_config(&config, &immutable_config, &args[1]); crate::config::write_config(&config, &immutable_config, &args[1]);
let service = SmtpService::create(format!("{}:{}", config.bind_address.unwrap(), config.bind_port.unwrap()).parse().unwrap(), "matrixmailer".into(), let service = SmtpService::create(format!("{}:{}", config.bind_address.unwrap(), config.bind_port.unwrap()).parse().unwrap(), "matrixmailer".into(),
Arc::new(ToMatrixConverter { Arc::new(ToMatrixConverter {
receiver_whitelist: config.receiver_whitelist, receiver_whitelist: config.receiver_whitelist,
matrix_clients: clients, matrix_clients: clients,
mappings: config.mappings, mappings: config.mappings,