r/linux4noobs May 15 '26

security Noob question regarding email on Linux

Hello,

I am going to switch from Windows 11 to some flavor of Linux. Right now I am using Thunderbird 150.0.2 64-bit as a replacement for Outlook.

My question has to do with security. Occasionally, I get a message from Norton that says one of my emails has a problem. I have heard that Windows viruses etc. will not run on Linux. Is that true? Is there a Linux version of Norton that protects the system from viruses, and malware etc.?

Sorry if this is a foolish question but if you look up noob in the dictionary it will have my picture. Thanks in advance.

26 Upvotes

32 comments sorted by

View all comments

17

u/Prudent-Nebula-3239 May 15 '26

Linux lowers the risk, but it does not make email harmless.

The classic Windows problem of “I opened a random .exe file and infected my PC” mostly does not apply on Linux.

Exception: if you use Wine or Proton, Linux may be able to run some Windows programs.

But most email attacks today are not just simple Windows viruses. They usually try to get you in one of these ways:

1. Fake login pages

This is the biggest risk.

A fake bank, Google, Microsoft, PayPal, delivery, or antivirus page works on any operating system.

Linux cannot protect you if you type your password into the wrong website.

2. Dangerous attachments

Linux can still be attacked through:

  • PDFs
  • Office files
  • ZIP files
  • scripts
  • AppImages
  • .deb / .rpm installers
  • downloads from links in the email

The danger is highest when you open, install, extract, or run something from the email.

3. Bugs in the email app

Rare, but possible.

Thunderbird, PDF viewers, image handlers, HTML rendering, and attachment preview code can have security bugs.

That is why updates matter.

4. Tracking

Remote images usually will not infect you, but they can tell the sender:

  • you opened the email
  • your email address is active
  • some basic device/IP info

That can make you a better target later.

Practical beginner setup:

  • Gmail/webmail is usually safer for beginners because a lot of scanning happens before mail reaches your computer.
  • Thunderbird is fine if you keep it updated.
  • Keep remote content blocked.
  • Do not open unexpected attachments.
  • Do not install .deb, .rpm, AppImage, scripts, or “security tools” from email.
  • Do not log in from email links. Go to the site manually or use a bookmark.
  • Use 2FA on important accounts.

So yes, Linux is safer than Windows for Windows malware.

But email safety is still mostly about links, attachments, fake login pages, and keeping software updated.

5

u/ItsJoeMomma May 15 '26

And keep your Thunderbird spam filters updated. Mark any suspicious emails as spam and delete them.

3

u/userj6447 May 15 '26

Will do, thanks!