luceos I've fixed my initial problem, and since cronjob doesn't work, I'll try persisting through shell scripts.
Congratulations on my success, I successfully solved the email problem, but the queue list error problem still did not solve, I tried to look for the error log, found that the log did not exist, I cleared the cache did not solve, next I will post my php flarum info results in turn and share the shell script I edited
28e5a83079ac:/opt/flarum# php flarum info
Flarum core: 1.8.3
PHP version: 8.2.14
MySQL version: 8.2.0
Loaded extensions: Core, date, libxml, pcre, zlib, filter, hash, json, random, readline, Reflection, SPL, session, ctype, curl, dom, fileinfo, gd, gmp, iconv, intl, mbstring, openssl, PDO, standard, SimpleXML, sodium, tokenizer, xml, xmlwriter, zip, exif, mysqlnd, Phar, pdo_mysql, uuid, Zend OPcache
+---------------------------------+---------+--------+
| Flarum Extensions | | |
+---------------------------------+---------+--------+
| ID | Version | Commit |
+---------------------------------+---------+--------+
| flarum-flags | v1.8.0 | |
| blomstra-database-queue | 1.1.0 | |
| flarum-tags | v1.8.0 | |
| flarum-suspend | v1.8.1 | |
| flarum-sticky | v1.8.0 | |
| flarum-nicknames | v1.8.0 | |
| flarum-lock | v1.8.0 | |
| flarum-approval | v1.8.1 | |
| ianm-level-ranks | 1.1.1 | |
| afrux-forum-widgets-core | v0.1.7 | |
| muhammedsaidckr-gemini | v1.0.1 | |
| michaelbelgium-discussion-views | v7.2.1 | |
| littlecxm-whisper | 0.1.5 | |
| kilowhat-audit-free | 1.7.0 | |
| ianm-twofactor | 1.1.1 | |
| fof-user-bio | 1.3.2 | |
| fof-profile-image-crop | 1.1.6 | |
| fof-polls | 2.1.2 | |
| fof-nightmode | 1.5.3 | |
| fof-moderator-notes | 1.2.2 | |
| fof-frontpage | 1.2.0 | |
| fof-doorman | 1.1.4 | |
| fof-best-answer | 1.4.2 | |
| fof-ban-ips | 1.1.1 | |
| flarum-subscriptions | v1.8.0 | |
| flarum-statistics | v1.8.0 | |
| flarum-pusher | v1.8.0 | |
| flarum-mentions | v1.8.2 | |
| flarum-markdown | v1.8.0 | |
| flarum-likes | v1.8.0 | |
| flarum-lang-english | v1.8.0 | |
| flarum-lang-chinese-simplified | v1.3.0 | |
| flarum-emoji | v1.8.0 | |
| flarum-bbcode | v1.8.0 | |
| datlechin-link-preview | v0.1.4 | |
| afrux-online-users-widget | v0.1.6 | |
+---------------------------------+---------+--------+
Base URL: https://xxxx
Installation path: /opt/flarum
Queue driver: database
Session driver: file
Scheduler status: Active
Mail driver: smtp
Debug mode: off
shell
#!/bin/bash
while true
do
cd /opt/flarum && php flarum schedule:run
sleep 60
done &