A few tips before posting:

  • Information about Mail can be found on Vivaldi Help.
  • Experiencing issue? Try the troubleshooting steps listed here first.
  • Please use the search feature before starting a new thread.
  • Signature has additional lines added after setting

    3
    · OgyOlive
    0 Votes
    3 Posts
    182 Views
    O
    Thank you, much appreciated!! I did have a look for a record of the issue but obviously didn't look hard enough
  • Mail Message Label Order & Visibility Bug?

    Unsolved
    7
    · janrif
    0 Votes
    7 Posts
    525 Views
    janrif
    J
    @eggert said in Mail Message Label Order & Visibility Bug?: Just to be sure, you are referring to the list of items under "Mail Panel Order and Visibility" in mail settings? @eggert Yes, that's correct but since I generally work in Snapshot, the problem may only exist in Snapshot. Today, I'm working in latest Stable so I'll check on this a bit later in my day and report back to you. @eggert Update using Stable Version In Panel List No D&D in Panel List Creating a new label in Panel List is OK In Settings Arrow Keys ok at the top of the List Arrow Keys Not OK near the bottom of the List D&D moves item backwards near the bottom of the List
  • mail with jpg without jpg?

    6
    · derDay
    0 Votes
    6 Posts
    412 Views
    DoctorG
    D
    @derDay That was fixed already in some older snapshot.
  • Mail message not fetched

    11
    · Durtro
    0 Votes
    11 Posts
    846 Views
    DoctorG
    D
    @Durtro said in Mail message not fetched: VB-106681 I closed the bug report now.
  • Is the integrated email client compatible with two-factor authentication?

    3
    · Totto
    0 Votes
    3 Posts
    261 Views
    Totto
    T
    Thank You - Much appreciated! After entering that newly created app-pw into the email client pw-settings it now seems to be working as it should.
  • How to delete an email in Outbox?

    Moved Solved
    4
    · dtsnik
    0 Votes
    4 Posts
    306 Views
    DoctorG
    D
    @dtsnik Welcome to our Vivaldi Community Do not hesitate to ask, we are a community to help users. Enjoy browsing with Vivaldi.
  • Can't create a Vivaldi email account

    16
    · LionWinged
    1 Votes
    16 Posts
    1k Views
    LunaSterling
    L
    @jane.n said in Can't create a Vivaldi email account: For some reason, which is being investigated, you didn't get access to Vivaldi Webmail, when you should have, but we've granted you access now. We're sorry for the trouble. Thank you. Hope for the sake of others that is fixed.
  • Cannot add first email account

    9
    · jbh1957
    2 Votes
    9 Posts
    754 Views
    jane.n
    J
    @v127 There seems to be a bug somewhere. We've granted you access to Webmail now. If there are others, who think they have been active in the Community for long enough, but aren't allowed to log in to Webmail, please reach out to our Support team via the contact form at the end of this Help page - https://help.vivaldi.com/services/webmail/troubleshooting-webmail-issues/.
  • Emails not coming in?

    10
    · Aquatica
    0 Votes
    10 Posts
    607 Views
    A
    I had wondered if I should show the emails on the screenshot, but figured it was fine because I don't put my actual name or identifying info on the accounts. Clearly I misjudged. Edited the piece to obscure the names. Thanks again.
  • How secure is Vivaldi mail?

    7
    · gildedpeep
    0 Votes
    7 Posts
    563 Views
    tarquin
    T
    @gildedpeep Correct. Even if you use an anonymising proxy (which removes the location leak), you still have: confirmation of your email address to spammers. confirmation to the stalker that they still have the right email address. confirmation to the stalker that the email has been read for a fifth time, and they still have an influence over you. confirmation to the stalker that you are still probably in their timezone. confirmation to your boss that you opened it for the third time and you still have not replied. confirmation to that external company that you are in fact still considering their proposal, even though you are trying to act like you are not. data going to those trackers that try to build behavioural profiles. All of those are things that email trackers actually get used for, and email tracker services are used by a surprisingly large percentage of emails. A proxy can perform very limited heuristics ("this is the third IP address to click a link with that token in it, it is probably not a tracking ID"), but only at the expense of messing it up for the first few users to be seen with it. So it is unlikely to be effective as any kind of protection there. A stalker is probably only targeting one person, so they only need a very basic URL that looks harmless, which nobody else will ever open - no tracking tokens are needed, and a proxy will think it is harmless: https://privately.owned/ Trackers can be very well hidden from a proxy too, using URLs based on IPv6 addresses where the address is the token, using subdomains as tracker IDs, using a few words in the path as the tracker ID, using the hash/fragment as a token (which the proxy cannot see at all since hashes are not passed in the headers, but can be read by scripts). They don't have to be obvious IDs in the query string, which makes it very hard for a proxy to know which part of the URL is safe to remove. http://[2600:1408:ec00:36::1736:7f24]/ https://three.token.words.example.com/ https://example.com/three/token/words/ https://example.com/?three=1&token=1&words=1 https://example.com/#three.token.words https://three.example.com/token#words With just three words based on a limited subset of the English dictionary without taboo words and without words that sound too similar, what3words manages to produce 64 trillion unique addresses. Computers don't confuse similar sounding words, so they could use all slightly different variants of words. Therefore with just 3 English words, a tracker could create 1.25×10^17 unique addresses, which is more than enough to allow any tracking they want (the same as ?trackertoken=aZ7tP9wXq3). And it can look like a harmless URL to a human or a proxy. Loading external content and clicking links in emails will always come with those possibilities, unless there is some large-scale heuristic based on monitoring of email contents from a large audience, with email contents of everyone being read and used for analysis before you open the email (and even that comes with some of the risks, not least that the service provider themselves is probably doing a vast amount of tracking of their own - you can guess which company I am referring to). Even so, someone could easily manipulate any such proxy or heuristic by sending tracking URLs to their own accounts at that service enough times for the proxy/heuristic to think it is not being used for tracking, then enabling its use as a tracker before sending it to their victim. No risk of remote code execution though unless some libraries involved in parsing the content have a serious vulnerability? Actually, unlikely even so. Vivaldi could in fact safely run script in an email, and the only new risk is that the script could send a tracking ping. Scripts in an email are no worse than scripts in a web page (assuming we can ignore the tracking potentials). Vivaldi displays emails with the same engine as it displays web pages, and the engine is good enough to run untrusted JavaScript all the time, all over the web. Emails are displayed inside an about:blank origin, meaning they do not have privileges to interact with any other origin, any more than the same origin policy allows one web page to interact with another (CORS and postMessage being the limit). So if a script can run, it cannot affect any other web page unless the web page itself chooses to allow all other untrusted web pages to interact with it. Emails are also displayed with all scripts actively removed, for all ways that script can be injected into a page. There are a lot of layers of protection there, and one of them is a fundamental protection applied to all untrusted websites, which is what allows you to use the web safely for browsing. The reason we disable scripts is because of the potential to send tracking pings, not because we are worried about vulnerabilities.
  • Signature not displayed correctly

    5
    · LorenJaffrey
    0 Votes
    5 Posts
    376 Views
    LorenJaffrey
    L
    Thank you this helps me to get it working immediately. I will raise a bug report too.
  • Stuck on connecting all of the sudden

    7
    · t0yz
    0 Votes
    7 Posts
    484 Views
    t0yz
    T
    I got some more of these but very short lived. Also got some temp error with empty mail body, so I could see the email title and it arrived in the mailbox, but had no content. "Fixed" with "Reconnect with server (forced). No idea why these occur. [image: 1748438077458-screenshot-2025-05-28-160845.png] [image: 1748438077567-screenshot-2025-05-28-160900.png]
  • External Email Keyboard Command

    3
    · Oneimazer
    0 Votes
    3 Posts
    273 Views
    O
    Thank you for that. However, I have not used Safari for ages (except to occassionaly check it out); my primary browser has been Vivaldi for years. I have used the command I mentioned for a while. The process you took care to offer simply gives me a link to Vivaldi's native email client. So I am back to square one. But thanks again anyways!
  • FlushBuffer Error ??

    Unsolved
    20
    · janrif
    0 Votes
    20 Posts
    1k Views
    janrif
    J
    @ltgorm said in FlushBuffer Error ??: @janrif If you go to mail settings you see a check box labelled "Turn on IMAP Logs in Console". Make sure that that is on. Then reproduce the problem. Go to the console log by opening the vivaldi:inspect url, selecting Apps and selecting inspect for the main.html entry (it is either at the top or at the bottom). What you posted already in the bug started with: "error [Mail - imap-client] Error: IMAP connection encountered an error! Error: Unexpected section terminator ] at position 42". I would like to see the imap logs before that in hope of seeing the command/reply that contains mismatched brackets. I did as you asked, posted in original bug report and its still with me. I also note that mail client is slower than before; might have something to do w my internet connection, but just sayin'
  • Archiving mail locally

    30
    · jafaro
    0 Votes
    30 Posts
    3k Views
    mossman
    M
    @lesk I was using TotalCommander in Windows, which lets you do bulk actions on file lists resulting from searches. I find it hard to live without a "Commander" of some form (I sneak copies of TC onto work virtual desktops and use Commander clones found on client Linux environments - left by similarly-minded admins, no doubt). In any case, wishing you good luck.
  • Mail > Received View > jump to newest mail?

    11
    · schreck
    0 Votes
    11 Posts
    579 Views
    WildEnte
    W
    @schreck @Society alternatively everyone calms down and accepts that written communication can be misunderstood, and that making wrong assumptions about what was meant is natural. Let's be a friendly community.
  • mail not connecting to webmail

    5
    · Shields
    1 Votes
    5 Posts
    391 Views
    LiveWord
    L
    Thank you for your reply. Information I read was not clear that Vivaldi Mail and Webmail were treated the same in having access.
  • Import contacts dnworks

    Moved
    2
    · dnajdnjakddcklcxjzlfoimxcamoca
    0 Votes
    2 Posts
    191 Views
    DoctorG
    D
    @dnajdnjakddcklcxjzlfoimxcamoca You tried to import a Reading List, but that menu entry is not for Vivaldi Mail Contact! Currently you can not import contacts in Vivaldi Mail. Vivaldi Contact list is filled with addresses from mails resceived/sent.
  • Error: Mail DB Missing! Starting Restoration!

    Unsolved
    9
    · MarsdenNZ
    0 Votes
    9 Posts
    475 Views
    mib2berlin
    M
    @rparrales Thank you for testing, now we know it doesn't work for POP3 accounts. Thank you again for the workaround moving the folder Mail to a new profile.
  • How to use Vivaldi Mail client

    Moved
    13
    · Pedrotheswift
    1 Votes
    13 Posts
    1k Views
    WildEnte
    W
    @sintnicolaasacademie there's a section in the settings called "Mail". What more do you expect?

Give a donation to help us keep building the most amazing browser.