1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-09-19 16:12:41 +00:00

Add support for sending email via AWS SES

This commit is contained in:
Chase Douglas 2025-05-29 16:19:26 -07:00
commit 1fd3cb6641
5 changed files with 112 additions and 4 deletions

View file

@ -13,6 +13,8 @@ fn main() {
println!("cargo:rustc-cfg=query_logger");
#[cfg(feature = "s3")]
println!("cargo:rustc-cfg=s3");
#[cfg(feature = "ses")]
println!("cargo:rustc-cfg=ses");
#[cfg(not(any(feature = "sqlite", feature = "mysql", feature = "postgresql")))]
compile_error!(
@ -26,6 +28,7 @@ fn main() {
println!("cargo::rustc-check-cfg=cfg(postgresql)");
println!("cargo::rustc-check-cfg=cfg(query_logger)");
println!("cargo::rustc-check-cfg=cfg(s3)");
println!("cargo::rustc-check-cfg=cfg(ses)");
// Rerun when these paths are changed.
// Someone could have checked-out a tag or specific commit, but no other files changed.