Trashemail은 일회용 이메일 주소를 제공하여 개인 이메일 주소를 저장할 수있는 Telegram Bot으로 호스팅됩니다. 전자 메일 주소를 작성, 관리, 일회용으로 관리하고 Telegram 봇 채팅과 연결할 수 있습니다.
스팸, 광고 우편물, 해킹 및 공격 로봇을 잊어 버리십시오. 진짜 사서함을 깨끗하고 안전하게 유지하십시오. 트래 웨일 메일은 임시 (또는 영구적), 안전, 익명, 무료, 일회용 이메일 주소를 제공합니다. 하나를 얻고 싶습니까? 여기에 : @trashemail_bot
일회용 이메일 - 일정 시간이 경과 한 후 자체 파괴 된 일시적으로 이메일을받을 수있는 서비스입니다 (여기서 임시 요소가 귀하에게 적합합니다). Tempmail, 10MinuteMail, Throwaway 이메일, 가짜 메일 또는 쓰레기 메일과 같은 이름으로도 알려져 있습니다. 많은 포럼, Wi-Fi 소유자, 웹 사이트 및 블로그는 방문자에게 콘텐츠를보고 의견을 게시하거나 무언가를 다운로드하기 전에 등록을 요청합니다.
Trashemail 은 가장 진보 된 Throwaway 전자 메일 서비스가 아니라 스팸을 피하고 안전을 유지하며 @trashemail_bot Telegram Bot 에 직접 전달되는 이메일을받는 데 도움이되는 신뢰할 수있는 서비스입니다. 그리고 그러한 메일을 너무 많이받는 경우, 이메일 ID를 삭제하면 한 번 클릭 (oops 명령, Telegram Bot이므로)을 사용하여 삭제하십시오.
https://temp-mail.org/en/ 등과 같은 종류의 기능을 제공하는 웹 사이트가 있지만 그러한 플랫폼의 특정 문제가 있습니다.
이 모든 것을 고려할 때, 나는 취미에서 오픈 소스 프로젝트를 만들기로 결정하고 다른 사람들에게 서비스로 제공 할 생각 :) 내 서비스는 어떻습니까? 더 나은 그들의 것보다 :
Trashemail은 Java Spring-Boot MicroService로, 누구나 현재 로컬로 구축 할 수있는 사람이 거의 없습니다. 당신이 소유해야 할 것은 메일 서버 (SMTP 및 IMAP), Telegram Bot Token 및 mvn
로컬로 구축하기 만하면됩니다. MailServer의 요구 사항은 거의 없습니다.
구성을 약간 업데이트해야하며 빠르게 수행합니다. :)
소스를 복제하고 빌드 및 실행하고 Telegram에게 여기서 듣고 있다고 말하면됩니다.
git clone https://github.com/r0hi7/Trashemail.git
cd Trashemail
# Copy EmailsToTelegramServiceConfig-sample.yml and
# TrashEmailServiceConfig-sample.yml files
# according to your environemnt
# Let's say you want to deploy it for dev env
# Then copy these files like
cp EmailsToTelegramServiceConfig-sample.yml EmailsToTelegramServiceConfig-dev.yml
cp TrashEmailServiceConfig-sample.yml TrashEmailServiceConfig-dev.yml
# Now modify the respective copied files with your configs
# Similarly, it can be deployed be "qa", "prod" environments
# Finally, run the script build-and-run.sh with env as an argument
bash build-and-run.sh dev
# If you dont want to deploy it in docker-compose, then
# Use Makefile directly
# It will create targets for EmailsToTelegramService and TrashEmailService respectively
make dev
Dev 구성은 다음과 같습니다. EmailsToTelegramServiceConfig-dev.yml
# Email Server IMAP and SMTP configuration
# SMTP server should support Alias creation and deletion
# IMAP server should support IDLE
trashemail :
host : trash-email-service
port : 9090
path : /getChatId/
imap-client-service :
telegram :
url : https://api.telegram.org/bot
bot-token : xxxxxxxxxxxxxxxxxxxxxx
size : 4096
imap :
host : trashemail.in
port : 993
email : [email protected]
password : changeme
emails :
hostPath : http://127.0.0.1:8000/
downloadPath : /opt/EmailsToTelegramService/mails/
# main will specify springboot application to
# no start any tomcat server, which is not even
# required for emailservice.
spring :
application :
name : EmailsToTelegramService
main :
web-application-type : none
TrashEmailServiceConfig-dev.yml
# Tomcat server settings
server :
port : 9090
# Email server configuration for SMTP alias creation
email-server :
hosts :
- trashemail.in
- thromail.com
- humblemail.com
admin-email : [email protected]
admin-password : sample
add-url : https://trashemail.in/admin/mail/aliases/add
remove-url : https://trashemail.in/admin/mail/aliases/remove
target-alias : [email protected]
# Sample config for connecting with mysql-docker
spring :
datasource :
url : jdbc:mysql://mysql:3306/trashemail
username : root
password : changeme
driver-class-name : com.mysql.jdbc.Driver
jpa :
database-platform : org.hibernate.dialect.MySQL5InnoDBDialect
hibernate :
ddl-auto : update
show-sql : true
application :
name : Trashemail
# Trashemail app server settings
trashemail :
max-emails-per-user : 4
# Logger settings
logging :
level :
io :
github :
trashemail : debug
localhost:9090/telegram/new-message
Endpoint에서 서비스를 회전시킵니다.ngrok
, dataplicity
, localtunnel
등과 같은 옵션이 있습니다.ngrok
시작하십시오ngrok
https URL을 받으십시오mysql
에 의해 관리됩니다webhook
설정하면이 webhook
Telegram에게 봇 수신 요청을 어디로 보낼지 알려줍니다. curl -F " url=https://<YOUR_DOMAIN>/telegram/new-message " https://api.telegram.org/bot < BOT_TOKEN > /setWebhook
신뢰성 (또는 다른 것)에 문제가있는 경우이 서비스를 신뢰할 수 있도록 설계하려고 노력했습니다. PR을 자유롭게 떨어 뜨려주십시오. 나는 검토하고 합병하게되어 기쁩니다.
Zlipa.com에서 자랑스럽게 기증 된 두 개의 도메인 thromail.com & humblemail.com은 자랑스럽게 기증됩니다. Zlipa는 스타트 업, 부트 스트랩퍼 등의 도메인 이름을 10 배 낮은 시장 가격으로 제공합니다. 신나는 권리? 한 번만 체크 아웃하십시오.
아이디어가 마음에 들면 커피를 사면 피에 카파핀을 넣고이 제품을 안전하고 달리기 위해 여분의 밤을 보낼 것입니까?