Alexandros Prekates <apreka...@posteo.net> ha escrit: > I've build and installed mailutils 3.11.1 > > > $ which movemail > /usr/local/bin/movemail > > $ movemail --version > movemail (GNU Mailutils) 3.5
That's not 3.11.1, that's still old 3.5. The binary is using old libraries, from version 3.5. That's because the old libraries are located in directories that take precedence over the ones where the 3.11.1 libraries are installed (presumably /usr/local/lib or /usr/local/lib64, depending on how you configured it). See your /etc/ld.so.conf for details. To actually use 3.11.1, either uninstall the stock mailutils-3.5 or make sure new libraries take precedence over the old ones (by editing your /etc/ld.so.conf or setting the LD_LIBRARY_PATH variable). Perhaps uninstalling 3.5 would be the easier option. Anyway, only once you see $ movemail --version movemail (GNU Mailutils) 3.11.1 you can be sure you are using the new version. Regards, Sergey