--- title: Chapter 1. Help part: Part I. General prev: books/accessibility/parti next: books/accessibility/partii description: Where to get help tags: ["Accessibility", "Help"] showBookMenu: true weight: 3 params: path: "/books/accessibility/help/" --- [[help]] = Help :doctype: book :toc: macro :toclevels: 1 :icons: font :sectnums: :sectnumlevels: 6 :sectnumoffset: 1 :partnums: :source-highlighter: rouge :experimental: :images-path: books/accessibility/help/ ifdef::env-beastie[] ifdef::backend-html5[] :imagesdir: ../../../../images/{images-path} endif::[] ifndef::book[] include::shared/authors.adoc[] include::shared/mirrors.adoc[] include::shared/releases.adoc[] include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] toc::[] endif::[] ifdef::backend-pdf,backend-epub3[] include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] toc::[] include::../../../../../shared/asciidoctor.adoc[] endif::[] [[help-mailinglists]] == Mailing Lists Mailing lists are the primary communication channel for the FreeBSD community, covering a wide range of topics related to the project. Messages are typically written in plain text without graphical elements, making them well-suited for use with screen readers (both Braille displays and speech synthesizers). A complete list of available mailing lists can be found at: https://lists.freebsd.org/. For accessibility issues, the main point of contact is the FreeBSD Accessibility Mailing List. To subscribe, browse the archive, send messages, or manage your subscription, visit: https://lists.freebsd.org/subscription/freebsd-accessibility [[help-chat]] == Chat FreeBSD users and developers are also active on IRC (Internet Relay Chat), where real-time communication takes place. A complete list of servers and channels is available at: https://wiki.freebsd.org/IRC/Channels Messages are typically exchanged in plain text, making IRC well-suited for screen readers (both Braille displays and speech synthesizers). [[help-ports-pkgs]] == Ports and Packages If the issue pertains to an external tool installed through a extref:{handbook}ports[port or package], consider including the port maintainer in the discussion to ensure proper attention and resolution. To find out who maintains a specific port, navigate to the port's directory and run the command `make maintainer`. For example, to find the maintainer of the package:www/edbrowse[] port, run: [source,shell] .... % cd /usr/ports/www/edbrowse % make maintainer .... To find the maintainer of an installed package, use the `pkg info -f _package_`. For example: [source,shell] .... % pkg info -f edbrowse | grep Maintainer | awk '{print $3}' ....