Variable: tramp-goa-identity-regexp
tramp-goa-identity-regexp is a variable defined in tramp-gvfs.el.gz.
Value
"^\\([^/:|[:blank:]]+\\)?@\\([%._[:alnum:]-]+\\)?\\(?::\\([[:digit:]]+\\)\\)?"
Documentation
Regexp matching GNOME Online Accounts "PresentationIdentity" property.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp-gvfs.el.gz
;; <interface name='org.gnome.OnlineAccounts.Account'>
;; <method name='Remove'/>
;; <method name='EnsureCredentials'>
;; <arg type='i' name='expires_in' direction='out'/>
;; </method>
;; <property type='s' name='ProviderType' access='read'/>
;; <property type='s' name='ProviderName' access='read'/>
;; <property type='s' name='ProviderIcon' access='read'/>
;; <property type='s' name='Id' access='read'/>
;; <property type='b' name='IsLocked' access='read'/>
;; <property type='b' name='IsTemporary' access='readwrite'/>
;; <property type='b' name='AttentionNeeded' access='read'/>
;; <property type='s' name='Identity' access='read'/>
;; <property type='s' name='PresentationIdentity' access='read'/>
;; <property type='b' name='MailDisabled' access='readwrite'/>
;; <property type='b' name='CalendarDisabled' access='readwrite'/>
;; <property type='b' name='ContactsDisabled' access='readwrite'/>
;; <property type='b' name='ChatDisabled' access='readwrite'/>
;; <property type='b' name='DocumentsDisabled' access='readwrite'/>
;; <property type='b' name='MapsDisabled' access='readwrite'/>
;; <property type='b' name='MusicDisabled' access='readwrite'/>
;; <property type='b' name='PrintersDisabled' access='readwrite'/>
;; <property type='b' name='PhotosDisabled' access='readwrite'/>
;; <property type='b' name='FilesDisabled' access='readwrite'/>
;; <property type='b' name='TicketingDisabled' access='readwrite'/>
;; <property type='b' name='TodoDisabled' access='readwrite'/>
;; <property type='b' name='ReadLaterDisabled' access='readwrite'/>
;; </interface>
(defconst tramp-goa-identity-regexp
(rx
bol (? (group (regexp tramp-user-regexp)))
"@" (? (group (regexp tramp-host-regexp)))
(? ":" (group (regexp tramp-port-regexp))))
"Regexp matching GNOME Online Accounts \"PresentationIdentity\" property.")