1############### 2# Device Detector - The Universal Device Detection library for parsing User Agents 3# 4# @link https://matomo.org 5# @license http://www.gnu.org/licenses/lgpl.html LGPL v3 or later 6############### 7 8- regex: 'Outlook-Express(?:/(\d+[.\d]+))?' 9 name: 'Outlook Express' 10 version: '$1' 11 12# Outlook https://apps.apple.com/ru/app/microsoft-outlook/id951937596 13- regex: '^Outlook-iOS/(?:.+\((\d+[.\d]+)\)$)?' 14 name: 'Microsoft Outlook' 15 version: '$1' 16 17- regex: '(?:(?:Microsoft )?Outlook|MacOutlook)(?:[/ ](\d+[.\d]+))?' 18 name: 'Microsoft Outlook' 19 version: '$1' 20 21# Default Mail Client for Windows 22- regex: 'WindowsMail(?:/(\d+[.\d]+))' 23 name: 'Windows Mail' 24 version: '$1' 25 26- regex: '(?:Thunderbird|Icedove|Shredder)(?:/(\d+[.\d]+))?' 27 name: 'Thunderbird' 28 version: '$1' 29 30# Spicebird (http://www.spicebird.org/) 31- regex: 'Spicebird/(\d+\.[.\d]+)' 32 name: 'Spicebird' 33 version: '$1' 34 35- regex: 'Airmail(?: (\d+[.\d]+))?' 36 name: 'Airmail' 37 version: '$1' 38 39- regex: 'Lotus-Notes(?:/(\d+[.\d]+))?' 40 name: 'Lotus Notes' 41 version: '$1' 42 43- regex: 'Barca(?:Pro)?(?:[/ ](\d+[.\d]+))?' 44 name: 'Barca' 45 version: '$1' 46 47- regex: 'Postbox(?:[/ ](\d+[.\d]+))?' 48 name: 'Postbox' 49 version: '$1' 50 51- regex: 'MailBar(?:[/ ](\d+[.\d]+))?' 52 name: 'MailBar' 53 version: '$1' 54 55- regex: 'The Bat!(?: Voyager)?(?:[/ ](\d+[.\d]+))?' 56 name: 'The Bat!' 57 version: '$1' 58 59- regex: 'DAVdroid(?:/(\d+[.\d]+))?' 60 name: 'DAVdroid' 61 version: '$1' 62 63# SeaMonkey 64- regex: '(?:SeaMonkey|Iceape)(?:/(\d+[.\d]+))?' 65 name: 'SeaMonkey' 66 version: '$1' 67 68# Live5ch 69- regex: 'Live5ch/(\d+[.\d]+)' 70 name: 'Live5ch' 71 version: '$1' 72 73- regex: 'JaneView/' 74 name: 'JaneView' 75 version: '' 76 77- regex: 'BathyScaphe/' 78 name: 'BathyScaphe' 79 version: '' 80 81# Raindrop.io (https://raindrop.io/) 82- regex: 'Raindrop\.io/(\d+[.\d]+)' 83 name: 'Raindrop.io' 84 version: '$1' 85 86# Franz (https://meetfranz.com/) 87- regex: 'Franz/(\d+[.\d]+)' 88 name: 'Franz' 89 version: '$1' 90 91# Mailspring (https://www.electronjs.org/apps/mailspring) 92- regex: 'Mailspring/(\d+[.\d]+)' 93 name: 'Mailspring' 94 version: '$1' 95 96# Notion (https://www.notion.so/) 97- regex: 'Notion/(\d+[.\d]+)' 98 name: 'Notion' 99 version: '$1' 100 101# Basecamp (https://basecamp.com/) 102- regex: 'Basecamp[0-9]/?(\d+[.\d]+)' 103 name: 'Basecamp' 104 version: '$1' 105 106# Evernote (https://evernote.com/) 107- regex: 'Evernote/?(\d+[.\d]+)' 108 name: 'Evernote' 109 version: '$1' 110 111# Rambox Pro (https://rambox.app/) 112- regex: 'ramboxpro/(\d+\.[.\d]+)?' 113 name: 'Rambox Pro' 114 version: '$1' 115 116# Mailbird (https://www.getmailbird.com/) 117- regex: 'Mailbird/(\d+\.[.\d]+)/' 118 name: 'Mailbird' 119 version: '$1' 120 121# Yahoo Mail (https://apps.apple.com/us/app/yahoo-mail-organised-email/id577586159) 122- regex: 'Yahoo%20Mail' 123 name: 'Yahoo Mail' 124 version: '' 125 126# Yahoo! Mail (https://play.google.com/store/apps/details?id=jp.co.yahoo.android.ymail | https://apps.apple.com/jp/app/yahoo-%E3%83%A1%E3%83%BC%E3%83%AB/id669931877) 127- regex: 'jp.co.yahoo.ymail/([\d.]+)' 128 name: 'Yahoo! Mail' 129 version: '$1' 130 131# eM Client (https://emclient.com/) 132- regex: 'eM ?Client/(\d+\.[.\d]+)' 133 name: 'eM Client' 134 version: '$1' 135 136# NAVER Mail (https://play.google.com/store/apps/details?id=com.nhn.android.mail) 137- regex: 'NaverMailApp/(\d+\.[.\d]+)' 138 name: 'NAVER Mail' 139 version: '$1' 140 141- regex: '^Mail/([\d.]+)' 142 name: 'Apple Mail' 143 version: '$1' 144 145# Foxmail (https://www.foxmail.com/) 146- regex: 'Foxmail/(\d+[.\d]+)' 147 name: 'Foxmail' 148 version: '$1' 149 150# Mail Master (https://apps.apple.com/mw/app/mail-master-by-netease/id897003024) 151- regex: 'MailMaster(?:PC|_Android_Mobile)?/(\d+[.\d]+)' 152 name: 'Mail Master' 153 version: '$1' 154 155# BlueMail (https://bluemail.me/) 156- regex: 'BlueMail/(\d+[.\d]+)' 157 name: 'BlueMail' 158 version: '$1' 159 160- regex: 'mailapp/(\d+\.[.\d]+)' 161 name: 'mailapp' 162 version: '$1' 163 164# Gmail 165- regex: 'Android-Gmail' 166 name: 'Gmail' 167 version: '' 168