This guide explains how to download, configure and run Retro AIM Server on macOS (Intel and Apple Silicon).
-
Download Retro AIM Server
Grab the latest macOS release from the Releases page for your platform (Intel or Apple Silicon).
Because the Retro AIM Server
.apphas not been blessed by Apple, browsers such as Chrome may think it's a "suspicious" file and block the download, in which case you need to explicitly opt in to downloading the untrusted file.While the binaries are 100% safe, you can avoid the security concern by building the application yourself. We do not provide signed binaries because of the undue cost and complexity.
Once downloaded, extract the
.ziparchive, which contains the application and a configuration filesettings.env. -
Open Terminal
Open a terminal and navigate to the extracted directory. This terminal will be used for the remaining steps.
cd ~/Downloads/retro_aim_server.0.1.0.macos.intel_x86_64/
-
Remove Quarantine
Because the Retro AIM Server
.apphas not been blessed by Apple, macOS will quarantine the application. To proceed, remove the quarantine flag from the.app. In the same terminal, run following command:sudo xattr -d com.apple.quarantine ./bin/retro_aim_server
While the binaries are 100% safe, you can avoid the security concern by building the application yourself. We do not provide signed binaries because of the undue cost and complexity.
-
Configure Server Address
Set
OSCAR_HOSTinsettings.envto a hostname that AIM clients can connect to. The default setting is127.0.0.1, which is enough to connect clients on the same machine.In order to connect AIM clients on your LAN (including VMs with bridged networking), you can find the appropriate IP address by running the following command in the terminal:
osascript -e "IPv4 address of (system info)" -
Start the Application
Run the following command to launch Retro AIM Server:
./run.sh
Retro AIM Server will run in the terminal, ready to accept AIM client connections.
-
Test
To do a quick sanity check, start an AIM client, sign in to the server, and send yourself an instant message. Configure the AIM client to connect to the host set in
OSCAR_HOSTinsettings.env. (If you didn't change the config, the address is127.0.0.1.)See the Client Configuration Guide for more detail on setting up the AIM client.
By default, you can enter any screen name and password at the AIM sign-in screen to auto-create an account.
Account auto-creation is meant to be a convenience feature for local development. In a production deployment, you should set
DISABLE_AUTH=falseinsettings.envto enforce account authentication. User accounts can be created via the Management API.
