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:
parent
3b48e6e903
commit
1fd3cb6641
5 changed files with 112 additions and 4 deletions
3
build.rs
3
build.rs
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue