Thank you very much for information.

Every where is writing as below sentances. How do I change this code.

3) Then go to your config directory and run conf.pl.  Choose
   option 8 and move the plugin from the "Available Plugins"
   category to the "Installed Plugins" category.  Save and exit.

The code is from config.pl

    } elsif ( $menu == 8 ) {
        print $WHT. "Plugins\n" . $NRM;
        print "  Installed Plugins\n";
        $num = 0;
        for ( $count = 0 ; $count <= $#plugins ; $count++ ) {
            $num = $count + 1;
            print "    $num. $plugins[$count]\n";
        }
        print "\n  Available Plugins:\n";
        opendir( DIR, "../plugins" );
        @files          = readdir(DIR);
        $pos            = 0;
        @unused_plugins = ();
        for ( $i = 0 ; $i <= $#files ; $i++ ) {
            if ( -d "../plugins/" . $files[$i] && $files[$i] !~ /^\./ &&
$files[$i] ne "CVS" ) {
                $match = 0;
                for ( $k = 0 ; $k <= $#plugins ; $k++ ) {
                    if ( $plugins[$k] eq $files[$i] ) {
                        $match = 1;
                    }
                }
                if ( $match == 0 ) {
                    $unused_plugins[$pos] = $files[$i];
                    $pos++;
                }
            }
        }

        for ( $i = 0 ; $i <= $#unused_plugins ; $i++ ) {
            $num = $num + 1;
            print "    $num. $unused_plugins[$i]\n";
        }
        closedir DIR;

        print "\n";
        print "R   Return to Main Menu\n";

Where do I have to change ?

There is config.php.sample file that code I have to past in config.php but
where I have to past it at last or first ?

Regards,
Amin

>>
>> Hi,
>>
>> When some one is login in mail login name is not showing anywhere in
>> squrillmail. Is there any way to show login name ?
>
> Check list of plugins.
> http://www.squirrelmail.org/plugins_category.php?category_id=all
>
> Username Display - (17066 downloads)
> Details | Download 2.3 | Download 2.2 | Download 2.1 | Download 2.0 |
> Download 1.1 | Download 1.0
> Original Author: Tyler Akins
> Shows the current user's username above/below the folder list.
>
> http://www.squirrelmail.org/plugin_view.php?id=35
>
> Certain options has to be set in user preferences (options->display prefs)
> in order to see user name.
>
>
>
> -------------------------------------------------------
> This SF.Net email sponsored by: ApacheCon 2003,
> 16-19 November in Las Vegas. Learn firsthand the latest
> developments in Apache, PHP, Perl, XML, Java, MySQL,
> WebDAV, and more! http://www.apachecon.com/
> --
> squirrelmail-users mailing list
> List Address: [EMAIL PROTECTED]
> List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
> List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
>


-- 
--------------------------------------------------
Amin Thakkar
Plot 7 Portal Avenue
Kampala
Uganda
Tel: 348043/4
Fax:348042
Mob: 071 477921
--------------------------------------------------



-------------------------------------------------------
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
--
squirrelmail-users mailing list
List Address: [EMAIL PROTECTED]
List Archives:  http://sourceforge.net/mailarchive/forum.php?forum_id=2995
List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Reply via email to