-
Notifications
You must be signed in to change notification settings - Fork 15
feat: IMAP and Outlook-based email providers #357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| const createWindow = (): void => { | ||
| // Create the browser window. | ||
| const mainWindow = new BrowserWindow({ | ||
| mainWindow = new BrowserWindow({ |
Check warning
Code scanning / Electronegativity
Limit navigation flows to untrusted origins. Middle-click may cause Electron to open a link within a new window
| const createWindow = (): void => { | ||
| // Create the browser window. | ||
| const mainWindow = new BrowserWindow({ | ||
| mainWindow = new BrowserWindow({ |
Check warning
Code scanning / Electronegativity
Review the use of the contextIsolation option
| const createWindow = (): void => { | ||
| // Create the browser window. | ||
| const mainWindow = new BrowserWindow({ | ||
| mainWindow = new BrowserWindow({ |
Check warning
Code scanning / Electronegativity
Use sandbox for untrusted origins
| // Register the protocol with the OS | ||
| if (process.defaultApp) { | ||
| if (process.argv.length >= 2) { | ||
| app.setAsDefaultProtocolClient( |
Check notice
Code scanning / Electronegativity
Review the use of custom protocol handlers
| ); | ||
| } | ||
| } else { | ||
| app.setAsDefaultProtocolClient('aeon'); |
Check notice
Code scanning / Electronegativity
Review the use of custom protocol handlers
No description provided.