The one you host yourself (with a dedicated and redundant home server)
Nothing, it's creator is a sperg like most LULZ tards
Yes it is a LULZ meme
Proton Mail/Tutanota since at least you know they use GDPR and zero access
Any mail provider (including Cock.li) can face and will need to fulfill judicial orders so they are all the same. Use either Proton Mail or Cock.li exclusively through Tor if that's your threat model.
All of them are so fucking bad they make cock.li look good
My current setup is disroot and moving everything that goes into there inmeditatly to a non-interner facing self hosted server, alongside proton and tutanota for anyone that wants to use that to email me
It's funny that people always say "just host yourself". I went through a lot of trouble doing so but as it stands right now it works very well. Still it was a pain in the ass to get it running in a NAT environment on my dedicated server and another pain in the ass to hit almost every inbox.
Proxmox has a couple of ways to do so, bridged, routed etc. A good place to look this up is the documentation, it's rather simple. You can assign containers a dedicated IPv6 from a subnet and have full connectivity. I'll post my config, I'm able to assign dedicated IPv6 addresses and use IPv4 NAT if needed.
auto lo
iface lo inet loopback
auto eno1 #Change that to your network device
iface eno1 inet static
address host_public_ipv4/27
gateway host_public_gateway
#IPv6 Connectivity (setup for static ipv6 on vm's) might not be requird for your setup
iface eno1 inet6 static
address host_public_ipv6/128
gateway ipv6_gateway
post-up sleep 5; /sbin/ip -6 route add aaaa:bbbb:cccc:ddff:ff:ff:ff:ff dev eno1
post-up sleep 5; /sbin/ip -6 route add default via aaaa:bbbb:cccc:ddff:ff:ff:ff:ff
pre-down /sbin/ip -6 route del default via aaaa:bbbb:cccc:ddff:ff:ff:ff:ff
pre-down /sbin/ip -6 route del aaaa:bbbb:cccc:ddff:ff:ff:ff:ff dev eno1
Cont. You assign your LXC of KVM an ipv4 address from the 10.0.0.x pool and set 10.0.0.254 as the gateway. You assign any IPv6 from the subnet and use the address from the the vmbr6 inet6 as the gateway. You can do this from the proxmox interface or on the LXC/KVM by editing /etc/network/interfaces. So it's not limited to proxmox as qemu and LXC can be used through cli. If you fuck up the server can no longer be accessed without reinstall, attached KVM or rescue system (if hosted on a dedicated line in a Datacenter or something).
sorry I can't accept an account like that. Cock.li doesn't provide a password reset option, so I don't want to use an email that someone knows the password for.
Why do you need a private email? I never got to grasp this. If you want private communication the email protocol is horrible. XMPP exists. The only thing I use email for is work, and where do I need secrecy in that? >Oh, but israelitegle can tie it to you
Guess what, I have a work email you moron. It's already tied to me.
The one you host yourself (with a dedicated and redundant home server)
Nothing, it's creator is a sperg like most LULZ tards
Yes it is a LULZ meme
Proton Mail/Tutanota since at least you know they use GDPR and zero access
Any mail provider (including Cock.li) can face and will need to fulfill judicial orders so they are all the same. Use either Proton Mail or Cock.li exclusively through Tor if that's your threat model.
>buy a domain
Thanks. That really helped knowing that all I had to do was throw more money
Guerilla for throwaways and tutanota for anything else.
If you need anything more secure than that you might as well use something better encrypted such as signal.
>is it just a LULZ meme?
Yes.
>are there better alternatives?
Disroot, Riseup, temporary mails (nada, tempmail, 10minutemail) and self-hosted
Does anyone have an invite?
i will keep using google
sent it
Send cock.li invite to [email protected]
Thanks
Sent
Check dm's :*
No you didn't
sent ;3
this interface is exactly like temp mail
Because it is
git help clone
>COCИ
>blah blah self host
No, I’m not going to. Using tutanota and disroot
No you didnt
nobody will give you one and you're only opening yourself up to get trolled retard
All of them are so fucking bad they make cock.li look good
My current setup is disroot and moving everything that goes into there inmeditatly to a non-interner facing self hosted server, alongside proton and tutanota for anyone that wants to use that to email me
riseup.net
It's funny that people always say "just host yourself". I went through a lot of trouble doing so but as it stands right now it works very well. Still it was a pain in the ass to get it running in a NAT environment on my dedicated server and another pain in the ass to hit almost every inbox.
>he fell for the nat meme
I'm not paying extra for a dedicated IPv4. The node is running proxmox and no I'm not running everything on bare metal. I use LXC and KVMs.
I mean I'm not paying for an extra dedicated IPv4.
I don't pay for a dedicated IP yet I still get one
Could you please tell me how you got a server running behind a NAT? I'm trying to do it myself and am at a complete loss
Proxmox has a couple of ways to do so, bridged, routed etc. A good place to look this up is the documentation, it's rather simple. You can assign containers a dedicated IPv6 from a subnet and have full connectivity. I'll post my config, I'm able to assign dedicated IPv6 addresses and use IPv4 NAT if needed.
auto lo
iface lo inet loopback
auto eno1 #Change that to your network device
iface eno1 inet static
address host_public_ipv4/27
gateway host_public_gateway
#IPv6 Connectivity (setup for static ipv6 on vm's) might not be requird for your setup
iface eno1 inet6 static
address host_public_ipv6/128
gateway ipv6_gateway
post-up sleep 5; /sbin/ip -6 route add aaaa:bbbb:cccc:ddff:ff:ff:ff:ff dev eno1
post-up sleep 5; /sbin/ip -6 route add default via aaaa:bbbb:cccc:ddff:ff:ff:ff:ff
pre-down /sbin/ip -6 route del default via aaaa:bbbb:cccc:ddff:ff:ff:ff:ff
pre-down /sbin/ip -6 route del aaaa:bbbb:cccc:ddff:ff:ff:ff:ff dev eno1
#bridged network used for lxc/kvm
auto vmbr6
iface vmbr6 inet static
address 10.0.0.254/24
bridge-ports none
bridge-stp off
bridge-fd 0
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up iptables -t nat -A POSTROUTING -s 10.0.0.0/24 -o eno1 -j MASQUERADE
post-down iptables -t nat -D POSTROUTING -s 10.0.0.0/24 -o eno1 -j MASQUERADE
iface vmbr6 inet6 static
address one_ipv6_from_subnet (diffrent to host_public_ipv6)
ff:ff:ff.... Really is just ff the rest is your real IPv6 (AA:bb etc.)
Cont. You assign your LXC of KVM an ipv4 address from the 10.0.0.x pool and set 10.0.0.254 as the gateway. You assign any IPv6 from the subnet and use the address from the the vmbr6 inet6 as the gateway. You can do this from the proxmox interface or on the LXC/KVM by editing /etc/network/interfaces. So it's not limited to proxmox as qemu and LXC can be used through cli. If you fuck up the server can no longer be accessed without reinstall, attached KVM or rescue system (if hosted on a dedicated line in a Datacenter or something).
protonmail
>bu-but
shut up chud nazi incel kiwifarmer it just werks
I'm trading a cock.li invite for RiseUp invite
[email protected] (temp email, will be up for 1 hour, if you send me I will reply back with an riseup invite)
hello
sorry I can't accept an account like that. Cock.li doesn't provide a password reset option, so I don't want to use an email that someone knows the password for.
Yes, it does. Just log into the main site and when you enter the account, there will be the option:
look the email
Ok, I got one. Can't delete this post, so don't send any.
sorry, just got an invite.
invtie pls
[email protected]
Why do you need a private email? I never got to grasp this. If you want private communication the email protocol is horrible. XMPP exists. The only thing I use email for is work, and where do I need secrecy in that?
>Oh, but israelitegle can tie it to you
Guess what, I have a work email you moron. It's already tied to me.
Does anyone have an invite?
[email protected]
always check these threads just in case someone posts the one I use, but thankfully not.
also cock.li is dogshit and glownagger bait. I have multiple accounts there but never use them.
None, email as a system is itself privacy invasive.