├── images ├── Outlook_mail.png ├── outlook_inbox_mod.png ├── vs_gcnotify_publish.png ├── vs_gcnotify_settings.png └── GOVCERT_RGB_for_outlook.png ├── GOVCERT Outlook Addins ├── GOVCERT Outlook Addins │ ├── Resources │ │ ├── ResendError.txt │ │ ├── NewResendError.txt │ │ ├── NoSelectionError.txt │ │ ├── OverWriteConfirm.txt │ │ ├── NewMailBody.txt │ │ ├── logo.png │ │ ├── gcnotify.ico │ │ ├── SPAMDialogText.txt │ │ ├── GOVCERT_RGB_for_outlook_48_48.png │ │ ├── EmailDetails.txt │ │ ├── SuspectBody.txt │ │ └── ErrorMail.txt │ ├── MailDetails.vb │ ├── MyRules.ruleset │ ├── RibbonReadMail.xml │ ├── RibbonNewMail.xml │ ├── ThisAddIn.Designer.xml │ ├── RibbonHome.xml │ ├── PictureConverter.vb │ ├── My Project │ │ ├── AssemblyInfo.vb │ │ ├── Settings.settings │ │ ├── Settings.Designer.vb │ │ ├── Resources.Designer.vb │ │ └── Resources.resx │ ├── ThisAddIn.vb │ ├── app.config │ ├── ThisAddIn.Designer.vb │ ├── GOVCERT Outlook Addins.vbproj │ └── GOVCERTOutlookRibbon.vb └── GOVCERT Outlook Addins.sln ├── CHANGELOG.md ├── .gitignore ├── README.md └── LICENSE /images/Outlook_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOVCERT-LU/GCNotify/HEAD/images/Outlook_mail.png -------------------------------------------------------------------------------- /GOVCERT Outlook Addins/GOVCERT Outlook Addins/Resources/ResendError.txt: -------------------------------------------------------------------------------- 1 | Please click "send" to send this email. -------------------------------------------------------------------------------- /images/outlook_inbox_mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOVCERT-LU/GCNotify/HEAD/images/outlook_inbox_mod.png -------------------------------------------------------------------------------- /images/vs_gcnotify_publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOVCERT-LU/GCNotify/HEAD/images/vs_gcnotify_publish.png -------------------------------------------------------------------------------- /images/vs_gcnotify_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOVCERT-LU/GCNotify/HEAD/images/vs_gcnotify_settings.png -------------------------------------------------------------------------------- /images/GOVCERT_RGB_for_outlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOVCERT-LU/GCNotify/HEAD/images/GOVCERT_RGB_for_outlook.png -------------------------------------------------------------------------------- /GOVCERT Outlook Addins/GOVCERT Outlook Addins/Resources/NewResendError.txt: -------------------------------------------------------------------------------- 1 | Edit your message and then click "send" to send this email. -------------------------------------------------------------------------------- /GOVCERT Outlook Addins/GOVCERT Outlook Addins/Resources/NoSelectionError.txt: -------------------------------------------------------------------------------- 1 | Please Select at least one email to send. (Make sure no special items were selected.) -------------------------------------------------------------------------------- /GOVCERT Outlook Addins/GOVCERT Outlook Addins/Resources/OverWriteConfirm.txt: -------------------------------------------------------------------------------- 1 | You have entered a text in this Mail. 2 | 3 | By accepting your message will be alterd. -------------------------------------------------------------------------------- /GOVCERT Outlook Addins/GOVCERT Outlook Addins/Resources/NewMailBody.txt: -------------------------------------------------------------------------------- 1 | [Please add your inquiry here] 2 | 3 | HostDetails 4 | {{HostDetails}} 5 | {{NetworkDetails}} 6 | -------------------------------------------------------------------------------- /GOVCERT Outlook Addins/GOVCERT Outlook Addins/Resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOVCERT-LU/GCNotify/HEAD/GOVCERT Outlook Addins/GOVCERT Outlook Addins/Resources/logo.png -------------------------------------------------------------------------------- /GOVCERT Outlook Addins/GOVCERT Outlook Addins/Resources/gcnotify.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOVCERT-LU/GCNotify/HEAD/GOVCERT Outlook Addins/GOVCERT Outlook Addins/Resources/gcnotify.ico -------------------------------------------------------------------------------- /GOVCERT Outlook Addins/GOVCERT Outlook Addins/Resources/SPAMDialogText.txt: -------------------------------------------------------------------------------- 1 | The email from: {{Email}} with the subject {{Subject}} was already detected as SPAM. 2 | 3 | Do you realy want to send this email to GOVCERT? -------------------------------------------------------------------------------- /GOVCERT Outlook Addins/GOVCERT Outlook Addins/Resources/GOVCERT_RGB_for_outlook_48_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOVCERT-LU/GCNotify/HEAD/GOVCERT Outlook Addins/GOVCERT Outlook Addins/Resources/GOVCERT_RGB_for_outlook_48_48.png -------------------------------------------------------------------------------- /GOVCERT Outlook Addins/GOVCERT Outlook Addins/Resources/EmailDetails.txt: -------------------------------------------------------------------------------- 1 | 2 | ----------------------Email {{EmailCounter}} - DETAILS -------------------------- 3 | <{{From}}> [{{Subject}}] 4 | Header Information: 5 | {{HeaderDetails}} 6 | 7 | Number Of Attachments 8 | {{AttachmentCount}} 9 | -------------------------------------------------------------------------------- /GOVCERT Outlook Addins/GOVCERT Outlook Addins/Resources/SuspectBody.txt: -------------------------------------------------------------------------------- 1 | Dear GOVCERT, 2 | 3 | I want to forward the following emails to be analysed, as I found they look suspicious. 4 | 5 | Attachment(s): 6 | {{attachments}} 7 | 8 | HostDetails 9 | {{HostDetails}} 10 | {{NetworkDetails}} 11 | 12 | With best regards, 13 | 14 | -------------------------------------------------------------------------------- /GOVCERT Outlook Addins/GOVCERT Outlook Addins/Resources/ErrorMail.txt: -------------------------------------------------------------------------------- 1 | An unexpected Error occured in GCNotify! 2 | 3 | Please send this email. This will help to improve GCNotify. 4 | 5 | 6 | Details 7 | ------- 8 | GCNotify - {{Version}} 9 | 10 | Message 11 | ------- 12 | {{Message}} 13 | 14 | Exception Details 15 | ---------- 16 | {{ExceptionDetails}} -------------------------------------------------------------------------------- /GOVCERT Outlook Addins/GOVCERT Outlook Addins/MailDetails.vb: -------------------------------------------------------------------------------- 1 | Public Class MailDetails 2 | Public HeaderInformations As String() 3 | Public From As String 4 | Public Subject As String 5 | Public NumberOfAttachments As Integer 6 | 7 | Public Function GetSubjectLine() As String 8 | Return "[" + Me.Subject + "] from: " + Me.From 9 | End Function 10 | 11 | End Class 12 | -------------------------------------------------------------------------------- /GOVCERT Outlook Addins/GOVCERT Outlook Addins/MyRules.ruleset: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /GOVCERT Outlook Addins/GOVCERT Outlook Addins/RibbonReadMail.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |