1
0

Compare commits

..

2 Commits

Author SHA1 Message Date
592c3a062b Postbox: refactor smtp tools 2025-08-01 14:04:56 +03:00
04d789f0a4 Secrets: remove unused 2025-08-01 13:43:24 +03:00
4 changed files with 231 additions and 152 deletions

2
.gitignore vendored
View File

@@ -7,5 +7,3 @@
/ansible-vault-password-file
/temp
*.retry
test_smtp.py

View File

@@ -1,11 +1,35 @@
#!/usr/bin/env python3
"""
SMTP Password Generator for Yandex Cloud Postbox
Этот скрипт конвертирует Secret Access Key в SMTP пароль для использования
с Yandex Cloud Postbox сервисом. Скрипт реализует алгоритм AWS4 подписи
для генерации корректного SMTP пароля.
Yandex Cloud Postbox использует AWS-совместимый API, и для SMTP аутентификации
требуется специальный пароль, который генерируется из Secret Access Key
с использованием определенного алгоритма подписи.
Примеры использования:
python3 smtp-convert-secret-key-to-password.py "YourSecretAccessKey123"
Требования:
- Python 3.x
- Стандартные библиотеки: hmac, hashlib, base64, argparse, sys
Автор: Yandex.Cloud Team
Ссылка: https://yandex.cloud/ru/docs/postbox/operations/send-email
"""
import hmac
import hashlib
import base64
import argparse
import sys
# These values are required to calculate the signature. Do not change them.
DATE = "20230926"
SERVICE = "postbox"

View File

@@ -0,0 +1,70 @@
#!/usr/bin/env python3
"""
SMTP Test Email Sender for Yandex Cloud Postbox
Скрипт для отправки тестового email через Yandex Cloud Postbox SMTP сервер.
Используется для проверки корректности настроек SMTP аутентификации.
Примеры использования:
python3 smtp-send-test-email.py --login "your-login" --password "smtp-password" --to "recipient@example.com"
"""
import smtplib
import argparse
import sys
from email.message import EmailMessage
def send_test_email(login, password, to_email):
"""Отправляет тестовое email через Yandex Cloud Postbox SMTP"""
# initialize connection to our email server
smtp = smtplib.SMTP("postbox.cloud.yandex.net", port="587")
smtp.set_debuglevel(2)
smtp.ehlo() # send the extended hello to our server
smtp.starttls() # tell server we want to communicate with TLS encryption
smtp.login(login, password) # login to our email server
message = EmailMessage()
message.set_content("Hello, world! This is a test email from Yandex Cloud Postbox.")
message.add_header("From", login)
message.add_header("To", to_email)
message.add_header("Subject", "Test Email from Yandex Cloud Postbox")
# send our email message
smtp.send_message(message)
smtp.quit() # finally, don't forget to close the connection
print(f"Test email successfully sent to {to_email}")
def main():
parser = argparse.ArgumentParser(
description="Send a test email via Yandex Cloud Postbox SMTP server."
)
parser.add_argument(
"--login", required=True, help="SMTP login (usually your email address)"
)
parser.add_argument(
"--password",
required=True,
help="SMTP password (generated using smtp-convert-secret-key-to-password.py)",
)
parser.add_argument("--to", required=True, help="Recipient email address")
args = parser.parse_args()
try:
send_test_email(args.login, args.password, args.to)
except Exception as e:
print(f"Error sending email: {e}", file=sys.stderr)
sys.exit(1)
if __name__ == "__main__":
main()

View File

@@ -1,151 +1,138 @@
$ANSIBLE_VAULT;1.1;AES256
31343463363166363832343637643331386665636532316636613263383030323439313931633963
3437633264303634653734363837313165326236653333360a396237343537666665396239313564
30333131396430373630373934636535313230313131613561373766643264313163646531376630
6132326435393065350a306132303963626362326162663634336362393139356231323062316338
61303165353164303866663263313966306363373164316464353135343238333565613337646134
61653930323666356439666265373535653633346239303034313535666663613163323965363736
65313561633262333434303738383536336130643363373836346562363231623536326232343234
65353039643562316132633334653166623362313234323264363737326565626237373132663930
62353066303566643634333730616461643739333064313731353966326334333061626435656135
34336239313464633165366163356132353334636630646438643739313763363162383035346161
31626431336539376464306135356637623561373731623836613836313730663363356337666363
33656362383734386262643338626266613631623333366632393064363635353430616665666265
36633466353266623437663863333464623833316331313436316630656433333932366564363063
37373963653731363435383633326336393638653266336563386638313937656562613466313866
30633632376262373761626163303763323666366364376661633766346564643739653462396136
37653737643965623861623431623834656162383465326437643261373537613332346432383735
63376261393031313465323763386266343036643434383338306139356339633433313661333163
32376533616136643030303838313330633139623339346662346534666430396635643163333965
37316263346634623538343962393239356639613632666136633034303639636338346362333463
30393732393762306633346333366264323934313965353639376537376532356637316135666630
35396439383235366265333564303431386132306561353065386339363635346264663265383437
66346535623066346630303132306565653435383263353662333330306665313661653734646335
64363234343966366163643638623463343032343930356665613261636534616362663034393137
31623765383263363062616238373032393033646462633937356435616366343466646131393431
38396661323936663435626335396164303861396263343963383131626431306637616533393062
31646661383331666363643431663835313165653061316133306134353539363335623038613737
62373866343234303734666266663265663537643530393638363064663138613766343831643933
32613334383764643035623461646637333333646330326136363665636364636664316261646536
61313861666332343632333263333564363833326438373861326264653466336232623133303237
38313431656361626262616561346234366635643961613133643431303430303566663466633234
39313238356235313938643330376537383666396531343563653239376236333930343236633464
61663261663865636338303863313534393265613161353464636365343164353132353430613763
39323035386235633237353661376237353534623131393637336134396139336531623763356666
31613931376632333232626162373337373934353937623737346433653066306665646535383330
61323361303436653732353537323535633064646539633761633865353264623865323336376538
38363036353662333434313761666239346238393135363437353232646635323665636630333963
38643833656365383938653635383432393838626664313031616662663638356239643736316564
31373031616563306437373837646332666532643666663738393731633533353563616336326533
31306563373863393961396162323365633761343737353430653262363631333961613935303232
30623833373136636632663133306430646638653766623734323835666437613435363734623664
37313461393936386234623532613865353164656161303732666136613764306164353465356666
33656530396630363437303766343762376634316536666137336462323731613837646233353738
65366232303937356232656565636439346531313164663264646364356364363835333766343632
66363630393439633464666235333431316263643435656130363263636563316666643137376436
36393862303138306662303765636430643830363534343035316666333635653465303466343137
39316533646461353132323439663136336232313330356165316531313735313338343230633336
39306439363437363836386434303265353563356535336635313631623263623162323130376338
30313439303561393035356361303362656165393631396439366636633236333731353334383731
32393633373562313932346166656232323965386635303736646165303031666465666631383965
62396532333761366434343966303432313933613730383231663034643930316134366135383533
38633033656566363362656435616566316638663332643662373666653131653665323266326236
33353138303830336465386535323032656538646563356539316463626639613734313539656234
37666331343537346639663832613531393664356237386464323565343931306439346438333234
66306634663534393065376134633137666636623735666235666366323264663661353538323235
62646339366265303531373332303162386539633163663037313664323333643065386234613831
32663562376639633266336663656531323630613239626265613834356138626631653732393934
31626139666137383837646564643739313034343664333265396162343439316538356634336430
65643239643663356561666463363832353530363234633362626433613432636130383733626132
64663766663465373662396333653130623264333361353763303564636233346133666538633166
37613661626530376561343061373831303239306630333934336132303738323231306639306438
61393939313963333266373332643766373730386165663633343437323134343563633931336233
35656365623633343131663432633737363630383630326136356638653530616230316464633463
63353032656331313234313036643935303364316365393034643262346463343334383634646338
33633233333030626265323466323165303435343565363537383738303430656639663562356335
35646538316663616330363465303765323061656434646336346535363239373463343839636230
31363063323237643461646137656538326138353530303238313932383838333366623031663166
33303666303435333539323039626239643034313838313937303033306263373937326636663538
32363936343261653637383765326161636465323164663731323132623864653064306130393136
62383535313939323766626630316334643266633537656666303764396365616336346361376363
31336663346364616564303035376266386435353132343832653465356435313737353536656438
37336533373738363739343535643338363165396334626465386330626636653262333332386463
64326261323433326166623934613861633333623266646565303031633638663637356333396366
38323463353530393965643738653035303937386162373435623661663139353366666333306630
30333831393461663765393836623339333030303865636164363934383266643434333661626134
30626338373465353630636530643561376161663362353963393066326164616537636463383463
30343630646162316564643364376465333434613062663534373330613564366634633839333766
39356238333535306336613138383935623963386665633839383739343732646632393433313133
66393133313539333837393663643361613966336564363132363034323264643133656136303731
37366665386331353731326565646638356138386639363135363465633638663663336330316563
32336662663763623434363063656465623465306564313761656265666236663662373137636130
66353738353037663231353965336339383466383363343735326230646139636363343035386238
30306538333839656463386461633035386366393631383838353363373664383131313637653937
65663430323239616436636666613964353462353733643762653835306239626635326339313636
31613736346434373761643638356665393235343334666364636235316434313731323232376631
39343132343636633033646362383665613032383036633130326531313030383364353338386234
65663864646135633131306234303065656163653064633266363539313634666435613333323766
36323738303162663965366633396266613734366630323936636166633131663832343365393365
36616166313264643131666462303331613935386335383530653033346137316634633936393531
34376535633263336236336262306639656630323237653536663734316538343437643233653535
30666162356361656435653230306330306234623762366232633564373537313134336538353531
61643764353165366439393537636137653235363764393961623666396531303261303234643637
61663362646536303664653863626132323934343034353666313336616162623966333435396163
62616163646439623265343265306264313133313462626638666530386138613864656132376262
38313237373432303332623737616462643063343161303965613031666536643937613332623333
37613266303566306638326664313662363838326365633231336562326666613663343234303333
39323635323663343061376564363862396564626138643335363837613632363734653036623165
61333932356634366162626239623835616633306633653565393762643366323362626239343234
62343735626337306462663533353431306264313331303337646166326666396335393831383161
62383637353466346632383665333565393966633033313638383236393631353239343637323630
30626138646566386633373164643236313436363162633533316665646230393839356231643162
65613334316235386363666231613966623666613932306434613466643932313763303633666631
65383135623965666530636538373934326232376264323465376133383636653734393061623634
38353937643530373236373037663831663036356631666430386235316132393637623664613864
63626466353962333932346366663430653433326139326237353635663539303934623965323433
64363935313331326663363630663435633138396330643638656231656430623737613533333732
62353936313665363666363332303037316438623136306663633833656436373338343065383663
63346161313963633766376135333433313562376463313162353265393533663366663938383531
66323630363434373962343066306630326463643963393831353962326437333034393636623964
34616233616661353861376334623038326161356365376363666536363331313133623636313030
38303061326138646136316537316432363132363039353064336331336162326563363131313565
32333564666236366134336237353838343539353235333462626561663334353466353563626333
64646331393362343436323539383964393434303634313432376237313133363335636366316538
66316634373830313935336662626530303164303134643130646361623332346665643565346237
36376430383736663064653265343235656636303366323231633534393932383733303933383432
32393533343663303661376332306265623332386533303364613737366264623635623432663936
61396133663332623139666532656361336563316662396230656437633735303539363635653861
62336561376236386161336337323564623437303631613764393730656633386131376631366461
65366164656133383930383133356438326438666635643337383239393161353634346533376234
37306266623336393934343735636236666638386164346435363731623566613832613362363366
36613763376630366166653965653037393932656562353639643737376533343839616566353065
36313066666239666430353430336533393665316465663166333230303163316638373030326335
34303733333431656666333538376661356537356530623536393936663962626534303831366466
33633466613433646137323265636364373262393839323539666238353864323933643031383662
64303936653932653865356633363664623833363232313431376233376565663836343937343737
63363536663663326430363338666564663266633334653434383166663432643637393465353364
37373937356665316464366566643263393965666262376164623662613234313935613334636564
37663239383434633732666433613264313339613263383638333138623633396361356466613939
36623865616531306463643263383933323636366632346165316230313365656635333437623962
61656365383633383234333166613336303333333933663862643132346666303564663432306330
63333031633866393035393466323532303730313861313535386634623235653835386433386233
66633033343132316466666538666639363462393533663733303038613866383836613431326134
64613031316238653166333638363130383230356361336634346235363966366366623932303464
63336433613637346163336661313865396362646638323462616535303466306265356565376534
65646339303933663533663636373966396461303962303437633361623163313036323130303035
35366432373033333235376139373130386337383163396532313834333234393836333535626236
33326563323761313739373034306630353365663537646531363363376136613633313738616139
37643339366230343762333964306335336432623464336234383138383031633431393263383566
61366131343532613731333137633130393132663365396236366435306331336439636333303536
63623163303432386562323132353163616331313139653631353838336462343232363833326562
36363630616535333863636632333036656461343663636635616433323531346231373864613062
66646634653963323632636463636137663530366165616530363531633432613564316565313637
62393964346138623739636536353036376365643038643866623236303435333861633530643036
32633561393935343765613035303432626464306166663336343266313235386264353261303263
30306134643461323561353939633664663731316139323362373032623530346239383635356339
35666436356639373866346264373736386662363263636262383065356661643237396632666532
38633063346566326539393864636362386238373338373764626365643835623564316161666131
30393830373436323465613439313233353333346633386266323836643434393331373738323466
62613336376361373531393862626631633736656563373630643362323536303234396632633331
31373339346137386633333636323733666535633931393932653531336136613033663565303533
6539653332646630653564653239333530666336353235643333
36646437346237643435616461383833373262376234326330383934383164306139613765633631
3338613562666364336131356263393237373034643462630a663539323439373065316161386539
64613262663862353934636362333132646266636339326362623235613966376566666232353437
6262373033666631350a366236393932613033373032313066376535376164376561613032613639
66326533636561666139376637346566336237613964313364333036343966333938313735393335
63306636626338613964383263616632346337333837393738303137323934623436373230313436
37353963393533613830396537376235323737653666643035323366663636373739613662616436
61373136343765353535323039653638666230316230386662616262613130306664333265346631
62656536363032323166363133386334653264356230383564663963626537666439353966356538
37613764323533616337393439636531343261336133663838666165336166386231616233386138
39363335343533663465643531333666326330336466386630623261656133353462613735356539
36643966353838323265353361303434663934326533653662313662623034356566313561643261
37393933663639303333326335363566306135393639373461616635336262306263623964616161
34646330333635306265336264383336616663346230666535656331636435653937326635353737
35646337666238663633356230663233616234656232643665636235323133643065643633663663
39353633326133393335373935646136316266393033666532396531306461306463346336353132
36666663313461393565653733333661646436386433376265346533633763643235663561393538
66376532346664316461343336313039356430383462653263616632376661373231383331393935
35303463626665353638303934636565313635393330623935326266613839663266626632643162
32613665643435636461316262393636376231626432373463626233663764653633396639626439
38333866653535623231656639383533636635323233393539386137616236393462303161653037
66356162343534653534653638616633343030643762666638336465383230613561613165353662
66333335373332643935323332643639333662323133356365353933303434356261616265636337
62313430666165326335656264303536353931303963393233646336346239323236656265356537
34646232363062383266393231613539633864313639333131373761613666396134663961316533
34346535316232393034323964626130656430663763643365623030353839396339613336396166
34633837646364336230343238623266643833313839376139646634636531346534323630653964
31373831643565653635343963343436333262356435353434336436633361346532313832383666
30316164643033333739653866616432393736633361313237633434356537613664623963346363
39643138333432656632663335323037356236353034333161646263666161646239373963373966
38393435363762373666376234656463313438303365623063333537316336316338633533653636
65653564666538353261613961613930393964666434623337333731313931666339636131613639
64353533386534346366346565633165303364663165346138616438363234613066646330363761
36313266393663623364396266303466633236666538363162343336393333373335666534663038
66363838613634653736643932626432306439646562353066613139383563333138663233666636
33666131386138613038613462656233383864643633343238346439316334343536396230316130
62663430346163326333646131633330306461373638356338313563333735313366373239343262
63633730326637383334373164393238316132316236633164616664346339333235633938363438
39373665633837326637316230366432653236663837373739386434343137656532353731616463
66386639323136363562363138643139656636653832313734383530633562333866356136613937
33663939383764353936663035613530333337383034343234396161616335323962353338316136
65646266393738646536343233383138643430633362666537313662653939373164343135396131
35363931616136356236643332633866633831333633333630366365626535623736656563356231
37623830373230386437643135393664323335633038616632653030646664653564653633393966
33316334363738663666306562643732613362303933313231343961626635653438353163353132
36623162323837613663663966363632363735323664336566626635613065373364393032656463
63313431343435656133656439396536613230313332336265376461343332316366613737633933
35313534346336653237656161656562613161643035643536623330363335353132363863383932
65343365643762643563333966613734653832663865346234363663356562616364633230393030
31333135626239343030373534383232396537656332313765633737616364396236323335373735
34346566396463376532626364386332356434383264656632316661376164393137316636653330
33313138393433343762653035386530303635353833633935376138663865643039313331373363
62313730336534333736326337303662626262313464326639346236303630643731366638653062
32323633613565363336653166366538666266383232343464373330316563613365313136633537
66306164316361326133393933373133343164326565373631666332313335386639646465313239
39343465306435326135616534326130366338633964613864306462393264363830356330623761
36303563303631353534303431323039616662663061333230353964303965656233353236353539
31613962653638386539386430613632353066646137616630636635366364353635356333626666
34303465373466303932626131393530656633333332356533373332323538376261323362663935
34383639653866343963616231393765633635666231326462393737623666396337623331333265
36646261643237316330353837333164336436383535383666343566343339663331393164323036
61663935356237663565343037343366383838626664663264616666623663643965373137366431
35616362303839316663646361616661356133353562643135306636376139303937363138626464
63353864653037353732316330623333386435346461656538303730323062663462613937643631
64363036333430633539326436653437393461303831333033643131623233313839306339393239
31643563643734633634363438303937363631353164323831656435383132303634383534383561
33613566383833323333383633336335343338323366373362633838643564376139666665626133
62623732323366656236623661313830373932343532663363333733343133613835653766633833
36303237386633646236383065356265353264326166373962366433626435623061326664366364
33393161643332303838616663396237363538653731376335363237643330653963363162323134
39653764346333353662303063343735363262336336306537616463656464363633323562366464
66363837636636343466323039656465623934633165316464386531396537626534396333393266
34303236303131326138366266613531376562303763663534356433626435303235306461376562
32666164376637646330353234353564326535363962326339393963366336316335383931313132
34356262376134353366336535373339613562643932363366653235346433613133393133623966
65326433316139353037303566363863666130633365646538623031663432323466626361313438
62626338363761393638326235633066653934616430346538346666663838306433343862396462
61383231336236306430643231303636613939373033636237663635643334313538633833363236
33323666653566326537363939653062366436396236623761353435303439316165383265383231
32633966666532613538396632646364373163653839306164373536396433643533326631666339
33323166373038616235363238643337623038333632653734303834613030356134343164343637
35313063363134633139646136653630323735393163633534613763646263666536303439383830
61663731373463663064363564333131383366613766653165396331396538343262353531663230
37336138666236383730313263376631643231306265653461316236343733656533616633323564
35353863306331663062633335663862616231353861373036613764353262653131366665343864
39663337316562393762323638333238316337333632323166633664383531323966306431303230
37613662343866613765636362356232373531656530613266663763356638323231386263356136
39663863626165303430383738366465393833386338396465623731396232613765303231353635
64343632626266383037623932336235383561313361343534376137376261383637613266336665
36633437393363343964306463353931343337396234326133366230623935323031633839376430
63373731666334333663333931333438393332623564633133316565356634386438643663316230
36643563653531373534663162643834646138393830303032363135326639333661666531396631
39346338633734333063663030616465633434373261646431633438396462336337393132366364
39323661646666633965303433363132343138626434613037336635353865366436623831373633
63616134343931376331616136613636653662316366376631356639313963353431396537303565
31333133303934393639646636336337326361613434336336336234653835306632353237646133
33343330386363366635373834316531636231313736336137333333356531343761663838396433
65383762343764666235346635636535313630656263306433346438393230366463663735633133
30346636376536663635383962626365353965626335346633306639333532313838663639356436
35666532393331313439366564343039373530363865376430643534653661653662316430316264
35646166303835653538326465353135396263663537636662623238306439386431636135323937
33303061643734323365626534303163343866393036636261393262343461303536666336653463
34353936656362653862306265663833636336636237653538386362613830323361616662346565
63643233393531373532373462356533333434613563623734313837356663353036333961666139
66613264353932646663646532623338346531653231626165363134623731313735626330393731
30663136346164636432663138393166326462363037353765633839323363326236303131333165
30363832336236616165353230623963363133386230366137633265373265653566343434623164
34643033633663343864326339616365303331363061333832356464646465383935633263373464
32333930626238393130303130326138323265626163363531343634613464383734353539323238
39613863353036323165343538323763626437633538613235616261383232373533393265303463
35646462643638616639393833613337343237626139336163323631653632653863643139373637
32643137323433303466643036653432326236656638623363643663376264323264653265626438
38666130383835323865356562346134316439353135643466383434323964653833633731646535
33616565363561613331656266373265326237353162656366656638303261346435663930366266
33383334353465313134306265363262656563343935653130363666313931353833373638633235
32313036393037323336303839663536396339303038323862633166613765323064323062336236
63343337346236346132323530323565613835333930656164633933323033343933613462363031
31313937633364383462663430653836353232383066383830396365623435346666333465356235
66656665636665663233323263343063306666643434373037306163646564343531383861613931
39643739383262633731333535383361623730383761316634373465636663663034653936366664
36363064346561633662376663303939386532316432363962336464623439313130623832623237
32663964646337626331333731313865346337626533306665333664633130343733666163393732
31623366303032353664626365366634393835343333343539613130386438656262383733653561
65343261623831633035303233366561346137306562626231303131316130366138636564323738
62303934343766383566633538356433393862383935376131353934393230303930623636643833
62383761646331373965326330333463336431366236326665646336613431376461316134316638
33386433316233646432333030613035373262613965396562373131326534366634613230396236
32616665643664343134373463346563636165343239326563633237666131323366373934326633
66333839323465656564336662613835356331653238633534646339613264323139646365623138
35663664376533643461373132313331316636656166643235393161373833626635306362613064
37313738646135313431376664613962386538666537613432613930303365313832623533343831
37383231373135666133653965396332366438356132383537303938663562626432383233663932
31373830613964636333623832613538336332353461356532316461316530396261353462613062
62383465356436373338636433663262303464646463356463303332383035356265666664316661
65653061396239613861303431633937376337653139363938396131633362636233663262336365
65336363653938626165663263343135306562393639333863623466356362323631323739656638
62303563356138326531653136623635663433636464343764656165313331316535