Function: hyrolo-google-contacts-p

hyrolo-google-contacts-p is a byte-compiled function defined in hyrolo.el.

Signature

(hyrolo-google-contacts-p)

Documentation

Non-nil means google contacts package is available and feature is enabled.

Requires hyrolo-google-contacts-flag set as non-nil and google-contacts package and gpg executables to be available for use.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
;;; ************************************************************************
;;; Google Contacts Integration
;;; ************************************************************************

(defun hyrolo-google-contacts-p ()
  "Non-nil means google contacts package is available and feature is enabled.
Requires `hyrolo-google-contacts-flag' set as non-nil and
google-contacts package and gpg executables to be available for
use."
  (and hyrolo-google-contacts-flag
       (featurep 'google-contacts)
       (boundp 'google-contacts-buffer-name)
       ;; If no gpg encryption executable, Oauth login to Google will fail.
       (or (executable-find "gpg2") (executable-find "gpg"))))